[][src]Struct coco::stack::Stack

pub struct Stack<T> { /* fields omitted */ }

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]

Returns a new, empty stack.

Examples

use coco::Stack;

let s = Stack::<i32>::new();

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

impl<T> RefUnwindSafe for Stack<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]