pub trait Servo: Display {
    fn read<T: Num>(
        &mut self,
        servo_input: &ServoInput<T>
    ) -> Result<ControlValue, ReadInputError>; }

Required Methods

Implementors