pub struct SharedROCounter { /* private fields */ }
Available on crate feature
alloc
only.Expand description
A Read-Only counter that can be shared between threads. The owner of the underlying counter is free to update the value, but users of this object alone may not.
Implementations§
Trait Implementations§
Source§fn clone(&self) -> SharedROCounter
fn clone(&self) -> SharedROCounter
Returns a copy 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 moreAuto Trait Implementations§
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