pub struct InitErr<'a, E> { /* private fields */ }
Expand description
Proof that the value is not pin-initialized.
See documentation of PinUninit
for details.
Implementations§
Source§impl<'a, E> InitErr<'a, E>
impl<'a, E> InitErr<'a, E>
Sourcepub fn into_inner(self) -> E
pub fn into_inner(self) -> E
Get the inner error.
Auto Trait Implementations§
impl<'a, E> Freeze for InitErr<'a, E>where
E: Freeze,
impl<'a, E> RefUnwindSafe for InitErr<'a, E>where
E: RefUnwindSafe,
impl<'a, E> Send for InitErr<'a, E>where
E: Send,
impl<'a, E> Sync for InitErr<'a, E>where
E: Sync,
impl<'a, E> Unpin for InitErr<'a, E>where
E: Unpin,
impl<'a, E> !UnwindSafe for InitErr<'a, E>
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