pub struct UsingClone<T: Clone + Send>(/* private fields */);
Expand description
Using variant that creates instances of each thread by cloning an initial value.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for UsingClone<T>where
T: Freeze,
impl<T> RefUnwindSafe for UsingClone<T>where
T: RefUnwindSafe,
impl<T> Send for UsingClone<T>
impl<T> Sync for UsingClone<T>where
T: Sync,
impl<T> Unpin for UsingClone<T>where
T: Unpin,
impl<T> UnwindSafe for UsingClone<T>where
T: UnwindSafe,
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