[][src]Struct crossbeam::stack::TreiberStack

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

Treiber's lock-free stack.

Usable with any number of producers and consumers.

Methods

impl<T> TreiberStack<T>[src]

pub fn new() -> TreiberStack<T>[src]

Create a new, empty stack.

pub fn push(&self, t: T)[src]

Push t on top of the stack.

pub fn try_pop(&self) -> Option<T>[src]

Attempt to pop the top element of the stack.

Returns None if the stack is observed to be empty.

pub fn is_empty(&self) -> bool[src]

Check if this queue is empty.

Trait Implementations

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

impl<T> Default for TreiberStack<T>[src]

impl<T: Debug> Debug for TreiberStack<T>[src]

Auto Trait Implementations

impl<T> Send for TreiberStack<T> where
    T: Send + Sync

impl<T> Sync for TreiberStack<T> where
    T: Send + Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T[src]