pub struct Operation(usize);
Expand description
Identifier associated with an operation by a specific thread on a specific channel.
Tuple Fields§
§0: usize
Implementations§
source§impl Operation
impl Operation
sourcepub fn hook<T>(r: &mut T) -> Operation
pub fn hook<T>(r: &mut T) -> Operation
Creates an operation identifier from a mutable reference.
This function essentially just turns the address of the reference into a number. The reference should point to a variable that is specific to the thread and the operation, and is alive for the entire duration of a blocking operation.
Trait Implementations§
source§impl PartialEq<Operation> for Operation
impl PartialEq<Operation> for Operation
impl Copy for Operation
impl StructuralEq for Operation
impl StructuralPartialEq for Operation
Auto Trait Implementations§
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnwindSafe for Operation
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