pub struct ReadResult { /* private fields */ }Expand description
Result of a ranked read operation
Contains the write rank and value at the time of the read. The read also installs a fence at the given rank, preventing lower-ranked writes from succeeding.
Implementations§
Source§impl ReadResult
impl ReadResult
Trait Implementations§
Source§impl Clone for ReadResult
impl Clone for ReadResult
Source§fn clone(&self) -> ReadResult
fn clone(&self) -> ReadResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReadResult
impl Debug for ReadResult
Source§impl PartialEq for ReadResult
impl PartialEq for ReadResult
impl Eq for ReadResult
impl StructuralPartialEq for ReadResult
Auto Trait Implementations§
impl Freeze for ReadResult
impl RefUnwindSafe for ReadResult
impl Send for ReadResult
impl Sync for ReadResult
impl Unpin for ReadResult
impl UnwindSafe for ReadResult
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