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