pub trait Access: Copy + Default {
type RestrictShared: Access;
}
Expand description
Private trait that is implemented for the types in this module.
Required Associated Types§
Reduced access level to safely share the corresponding value.
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.