pub trait IToMutable: IPersistent {
type Mutable;
// Required method
fn to_mutable(&self) -> Self::Mutable;
}Required Associated Types§
Required Methods§
fn to_mutable(&self) -> Self::Mutable
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".