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