pub trait CloneState<T>where
T: Clone + 'static,{
// Required methods
fn get(&self) -> T;
fn soft_get(&self) -> Option<T>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".