pub trait SetM<M> {
// Required method
fn set_m(&mut self, m: M);
}Expand description
Trait to set the m value
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".