pub trait TelemetryEvent {
// Required method
fn from_packet(packet: &TelemetryPacket) -> Result<Self, Box<dyn Error>>
where Self: Sized;
}Expand description
TelemetryEvent specifies a way to serialize itself from a Packet
pub trait TelemetryEvent {
// Required method
fn from_packet(packet: &TelemetryPacket) -> Result<Self, Box<dyn Error>>
where Self: Sized;
}TelemetryEvent specifies a way to serialize itself from a Packet