Struct concurrent_stack::ConcurrentStack [] [src]

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

A lock free FILO structure.

Methods

impl<T> ConcurrentStack<T>
[src]

Push a value on the top of stack.

Pop a value from the top of stack, if no available, return None.

Check if stack is empty.

Trait Implementations

impl<T> Drop for ConcurrentStack<T>
[src]

A method called when the value goes out of scope. Read more