Enum crossbeam_deque::Pop [−][src]
#[must_use]pub enum Pop<T> { Empty, Data(T), Retry, }
Possible outcomes of a pop operation.
Variants
EmptyThe deque was empty at the time of popping.
Data(T)Some data has been successfully popped.
RetryLost the race for popping data to another concurrent steal operation. Try again.
Trait Implementations
impl<T: Debug> Debug for Pop<T>[src]
impl<T: Debug> Debug for Pop<T>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T: PartialEq> PartialEq for Pop<T>[src]
impl<T: PartialEq> PartialEq for Pop<T>fn eq(&self, other: &Pop<T>) -> bool[src]
fn eq(&self, other: &Pop<T>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Pop<T>) -> bool[src]
fn ne(&self, other: &Pop<T>) -> boolThis method tests for !=.
impl<T: Eq> Eq for Pop<T>[src]
impl<T: Eq> Eq for Pop<T>impl<T: PartialOrd> PartialOrd for Pop<T>[src]
impl<T: PartialOrd> PartialOrd for Pop<T>fn partial_cmp(&self, other: &Pop<T>) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Pop<T>) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Pop<T>) -> bool[src]
fn lt(&self, other: &Pop<T>) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Pop<T>) -> bool[src]
fn le(&self, other: &Pop<T>) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Pop<T>) -> bool[src]
fn gt(&self, other: &Pop<T>) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Pop<T>) -> bool[src]
fn ge(&self, other: &Pop<T>) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<T: Ord> Ord for Pop<T>[src]
impl<T: Ord> Ord for Pop<T>fn cmp(&self, other: &Pop<T>) -> Ordering[src]
fn cmp(&self, other: &Pop<T>) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl<T: Copy> Copy for Pop<T>[src]
impl<T: Copy> Copy for Pop<T>impl<T: Clone> Clone for Pop<T>[src]
impl<T: Clone> Clone for Pop<T>