[−][src]Struct crossbeam_deque::Stealer
The stealer side of a deque.
Stealers can only steal elements from the front of the deque.
Stealers are cloneable so that they can be easily shared among multiple threads.
Methods
impl<T> Stealer<T>
[src]
impl<T> Stealer<T>
pub fn is_empty(&self) -> bool
[src]
pub fn is_empty(&self) -> bool
Returns true
if the deque is empty.
use crossbeam_deque as deque; let (w, s) = deque::lifo(); assert!(s.is_empty()); w.push(1); assert!(!s.is_empty());
pub fn steal(&self) -> Steal<T>
[src]
pub fn steal(&self) -> Steal<T>
Steals an element from the front of the deque.
Examples
use crossbeam_deque::{self as deque, Steal}; let (w, s) = deque::lifo(); w.push(1); w.push(2); assert_eq!(s.steal(), Steal::Data(1)); assert_eq!(s.steal(), Steal::Data(2)); assert_eq!(s.steal(), Steal::Empty);
pub fn steal_many(&self, dest: &Worker<T>) -> Steal<T>
[src]
pub fn steal_many(&self, dest: &Worker<T>) -> Steal<T>
Steals elements from the front of the deque.
If at least one element can be stolen, it will be returned. Additionally, some of the
remaining elements will be stolen and pushed into the back of worker dest
in order to
balance the work among deques. There is no hard guarantee on exactly how many elements will
be stolen, but it should be around half of the deque.
Examples
use crossbeam_deque::{self as deque, Steal}; let (w1, s1) = deque::fifo(); let (w2, s2) = deque::fifo(); w1.push(1); w1.push(2); w1.push(3); w1.push(4); assert_eq!(s1.steal_many(&w2), Steal::Data(1)); assert_eq!(s2.steal(), Steal::Data(2));
Trait Implementations
impl<T: Send> Sync for Stealer<T>
[src]
impl<T: Send> Sync for Stealer<T>
impl<T: Send> Send for Stealer<T>
[src]
impl<T: Send> Send for Stealer<T>
impl<T> Clone for Stealer<T>
[src]
impl<T> Clone for Stealer<T>
fn clone(&self) -> Stealer<T>
[src]
fn clone(&self) -> Stealer<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<T> Debug for Stealer<T>
[src]
impl<T> Debug for Stealer<T>
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
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>
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 T
Mutably 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
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>
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