pub struct Stack<T>{ /* private fields */ }Expand description
A stack implementation of the Stackable trait, based on a vector.
Implementations§
Trait Implementations§
Source§impl<T> Stackable for Stack<T>
impl<T> Stackable for Stack<T>
Source§fn pop1(&mut self) -> Option<Self::Item>
fn pop1(&mut self) -> Option<Self::Item>
Removes the last item of the stack and returns it,
None if
the stack is empty.Auto Trait Implementations§
impl<T> Freeze for Stack<T>
impl<T> RefUnwindSafe for Stack<T>where
T: RefUnwindSafe,
impl<T> Send for Stack<T>where
T: Send,
impl<T> Sync for Stack<T>where
T: Sync,
impl<T> Unpin for Stack<T>where
T: Unpin,
impl<T> UnwindSafe for Stack<T>where
T: 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