[][src]Enum cm_telemetry::f1::f1_2020::F1_2020

pub enum F1_2020 {
    Motion(Motion),
    Session(Session),
    LapData(LapData),
    Event(Event),
    Participants(Participants),
    CarSetup(CarSetup),
    CarTelemetry(CarTelemetry),
    CarStatus(CarStatus),
    FinalClassification(FinalClassification),
    LobbyInfo(LobbyInfo),
}

F1_2020 implements the codemasters UDP telemetry protocol for "F1 2020" see: https://forums.codemasters.com/topic/50942-f1-2020-udp-specification/

Variants

Motion(Motion)
Session(Session)
LapData(LapData)
Event(Event)
Participants(Participants)
CarSetup(CarSetup)
CarTelemetry(CarTelemetry)
CarStatus(CarStatus)
FinalClassification(FinalClassification)
LobbyInfo(LobbyInfo)

Trait Implementations

Auto Trait Implementations

impl RefUnwindSafe for F1_2020

impl Send for F1_2020

impl Sync for F1_2020

impl Unpin for F1_2020

impl UnwindSafe for F1_2020

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.