pub trait HingeAngle {
type Output;
// Required method
fn angle(&self) -> Self::Output;
}Expand description
Trait representing devices that can provide angle measurements.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".