pub struct Stealer<T: Send> { /* private fields */ }Expand description
The stealing half of the work-stealing deque. Stealers have access to the
opposite end of the deque from the worker, and they only have access to the
steal method.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Stealer<T>
impl<T> RefUnwindSafe for Stealer<T>
impl<T> Send for Stealer<T>
impl<T> Sync for Stealer<T>
impl<T> Unpin for Stealer<T>
impl<T> UnwindSafe for Stealer<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more