[−][src]Struct crossbeam::stack::TreiberStack
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,
T: Send + Sync,
impl<T> Sync for TreiberStack<T> where
T: Send + Sync,
T: Send + Sync,
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom 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> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Wfn borrow_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'_ mut W
impl<T, U> TryInto 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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,