pub trait ArcThreadCheckedMutexLike {
type Container<T: ?Sized + Send>: TryMutContainer<T> + Clone + Send + Sync;
}Available on crate feature
kinds only.Expand description
A container kind trait based on how Arc<ThreadCheckedMutex<T>> acts as
a container for T.
Required Associated Types§
Sourcetype Container<T: ?Sized + Send>: TryMutContainer<T> + Clone + Send + Sync
type Container<T: ?Sized + Send>: TryMutContainer<T> + Clone + Send + Sync
An Arc<ThreadCheckedMutex<T>>-like container type
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.