[−][src]Struct crossbeam_deque::Worker
The worker side of a deque.
Workers push elements into the back and pop elements depending on the strategy:
- In FIFO deques, elements are popped from the front.
- In LIFO deques, elements are popped from the back.
A deque has only one worker. Workers are not intended to be shared among multiple threads.
Methods
impl<T> Worker<T>[src]
impl<T> Worker<T>pub fn is_empty(&self) -> bool[src]
pub fn is_empty(&self) -> boolReturns true if the deque is empty.
use crossbeam_deque as deque; let (w, _) = deque::lifo(); assert!(w.is_empty()); w.push(1); assert!(!w.is_empty());
pub fn push(&self, value: T)[src]
pub fn push(&self, value: T)Pushes an element into the back of the deque.
Examples
use crossbeam_deque as deque; let (w, _) = deque::lifo(); w.push(1); w.push(2);
pub fn pop(&self) -> Pop<T>[src]
pub fn pop(&self) -> Pop<T>Pops an element from the deque.
Which end of the deque is used depends on the strategy:
- If this is a FIFO deque, an element is popped from the front.
- If this is a LIFO deque, an element is popped from the back.
Examples
use crossbeam_deque::{self as deque, Pop}; let (w, _) = deque::fifo(); w.push(1); w.push(2); assert_eq!(w.pop(), Pop::Data(1)); assert_eq!(w.pop(), Pop::Data(2)); assert_eq!(w.pop(), Pop::Empty);
Trait Implementations
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>🔬 This is a nightly-only experimental API. (
try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>🔬 This is a nightly-only experimental API. (
try_from)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more