pub trait HingeAngle { type Output; // Required method fn angle(&self) -> Self::Output; }
Trait representing devices that can provide angle measurements.
The output type for the angle measurement. This could be a simple numeric type depending on the device precision.
Retrieves the current hinge angle.