pub struct Stack<T> { /* private fields */ }
Implementations§
Source§impl<T> Stack<T>
impl<T> Stack<T>
pub fn is_empty(&self) -> bool
pub fn pop(&mut self) -> Option<T>
pub fn peek(&self) -> Option<&T>
pub fn size(&self) -> usize
pub fn clear(&mut self)
pub fn into_iter(self) -> IntoIter<T> ⓘ
pub fn iter_mut(&mut self) -> IterMut<'_, T> ⓘ
Trait Implementations§
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