pub struct Full<'a, const N: usize>(/* private fields */);
Expand description
Error type when stack array is full.
Implementations§
Source§impl<'a, const N: usize> Full<'a, N>
impl<'a, const N: usize> Full<'a, N>
Sourcepub fn into_inner(self) -> PointerArray<'a, N>
pub fn into_inner(self) -> PointerArray<'a, N>
Retrieve array from Error.
Trait Implementations§
Auto Trait Implementations§
impl<'a, const N: usize> Freeze for Full<'a, N>
impl<'a, const N: usize> RefUnwindSafe for Full<'a, N>
impl<'a, const N: usize> !Send for Full<'a, N>
impl<'a, const N: usize> !Sync for Full<'a, N>
impl<'a, const N: usize> Unpin for Full<'a, N>
impl<'a, const N: usize> UnwindSafe for Full<'a, N>
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