pub enum Telemetry {
Erpm(u32),
Temperature(u8),
Voltage(u32),
Current(u32),
Debug1(u8),
Debug2(u8),
Debug3(u8),
StateEvent(u8),
}Variants§
Erpm(u32)
Temperature(u8)
1°C per unit.
Voltage(u32)
250mV per unit.
Current(u32)
1A (1000mA) per unit.
Debug1(u8)
Debug2(u8)
Debug3(u8)
StateEvent(u8)
Trait Implementations§
impl Copy for Telemetry
impl Eq for Telemetry
impl StructuralPartialEq for Telemetry
Auto Trait Implementations§
impl Freeze for Telemetry
impl RefUnwindSafe for Telemetry
impl Send for Telemetry
impl Sync for Telemetry
impl Unpin for Telemetry
impl UnsafeUnpin for Telemetry
impl UnwindSafe for Telemetry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more