[−][src]Struct coco::stack::Stack
A lock-free stack.
It can be used with multiple producers and multiple consumers at the same time.
Methods
impl<T> Stack<T>[src]
pub fn new() -> Self[src]
pub fn is_empty(&self) -> bool[src]
Returns true if the stack is empty.
Examples
use coco::Stack; let s = Stack::new(); assert!(s.is_empty()); s.push("hello"); assert!(!s.is_empty());
pub fn push(&self, value: T)[src]
Pushes a new value onto the stack.
Examples
use coco::Stack; let s = Stack::new(); s.push(1); s.push(2);
pub fn pop(&self) -> Option<T>[src]
Attemps to pop an value from the stack.
Returns None if the stack is empty.
Examples
use coco::Stack; let s = Stack::new(); s.push(1); s.push(2); assert_eq!(s.pop(), Some(2)); assert_eq!(s.pop(), Some(1)); assert_eq!(s.pop(), None);
Trait Implementations
impl<T: Send> Send for Stack<T>[src]
impl<T: Send> Sync for Stack<T>[src]
impl<T> Drop for Stack<T>[src]
Auto Trait Implementations
impl<T> Unpin for Stack<T>
impl<T> UnwindSafe for Stack<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> RefUnwindSafe for Stack<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,