pub struct OptionFromRawFamily<P> { /* private fields */ }Expand description
Family of Options of a certain pointer type.
Trait Implementations§
Source§impl<P: FromRawFamily> FromRawFamily for OptionFromRawFamily<P>
§Safety
The input pointer must either be null (resulting in None), or be safe
to convert into the inner pointer type.
impl<P: FromRawFamily> FromRawFamily for OptionFromRawFamily<P>
§Safety
The input pointer must either be null (resulting in None), or be safe
to convert into the inner pointer type.
Auto Trait Implementations§
impl<P> Freeze for OptionFromRawFamily<P>
impl<P> RefUnwindSafe for OptionFromRawFamily<P>where
P: RefUnwindSafe,
impl<P> Send for OptionFromRawFamily<P>where
P: Send,
impl<P> Sync for OptionFromRawFamily<P>where
P: Sync,
impl<P> Unpin for OptionFromRawFamily<P>where
P: Unpin,
impl<P> UnwindSafe for OptionFromRawFamily<P>where
P: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more