You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously MaybeUninit was used to store a struct inside a Zend object. This can be replaced with an Option<T>, using std::ptr::write() to write the option into memory without dropping the uninitalized object.
The text was updated successfully, but these errors were encountered:
Previously
MaybeUninit
was used to store a struct inside a Zend object. This can be replaced with anOption<T>
, usingstd::ptr::write()
to write the option into memory without dropping the uninitalized object.The text was updated successfully, but these errors were encountered: