[−][src]Struct crossbeam::queue::SegQueue
A Michael-Scott queue that allocates "segments" (arrays of nodes) for efficiency.
Usable with any number of producers and consumers.
Methods
impl<T> SegQueue<T>
[src]
pub fn new() -> SegQueue<T>
[src]
Create a new, empty queue.
pub fn push(&self, t: T)
[src]
Add t
to the back of the queue.
pub fn is_empty(&self) -> bool
[src]
Judge if the queue is empty.
Returns true
if the queue is empty.
pub fn try_pop(&self) -> Option<T>
[src]
Attempt to dequeue from the front.
Returns None
if the queue is observed to be empty.
Trait Implementations
impl<T> Drop for SegQueue<T>
[src]
impl<T> Default for SegQueue<T>
[src]
impl<T: Debug> Debug for SegQueue<T>
[src]
Auto Trait Implementations
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,