pub struct TestNopSyncTypes;Expand description
Dummy SyncTypes collection for testing purposes.
Trait Implementations§
Source§impl SyncTypes for TestNopSyncTypes
impl SyncTypes for TestNopSyncTypes
Source§type Lock<T: Send> = TestNopLock<T>
type Lock<T: Send> = TestNopLock<T>
The execution environment’s implementation of the
ConstructibleLock
trait.Source§type RwLock<T: Send + Sync> = TestNopRwLock<T>
type RwLock<T: Send + Sync> = TestNopRwLock<T>
The execution environment’s implementation of the
RwLock trait.Source§type SyncRcPtrFactory = GenericArcFactory
type SyncRcPtrFactory = GenericArcFactory
The execution environment’s implementation of the
SyncRcPtrFactory
trait. Execution environments might want to consider using the
provided GenericArcFactory for their SyncRcPtrFactory.Auto Trait Implementations§
impl Freeze for TestNopSyncTypes
impl RefUnwindSafe for TestNopSyncTypes
impl Send for TestNopSyncTypes
impl Sync for TestNopSyncTypes
impl Unpin for TestNopSyncTypes
impl UnsafeUnpin for TestNopSyncTypes
impl UnwindSafe for TestNopSyncTypes
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