pub trait CheckedRcRefCellLike {
type Container<T: ?Sized>: TryMutContainer<T> + Clone;
}Available on crate feature
kinds only.Expand description
A container kind trait based on how CheckedRcRefCell<T> acts as a container for T.
Required Associated Types§
Sourcetype Container<T: ?Sized>: TryMutContainer<T> + Clone
type Container<T: ?Sized>: TryMutContainer<T> + Clone
A CheckedRcRefCell<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.