[][src]Struct rmonitor::protocol::Correction

pub struct Correction {
    pub registration_number: String,
    pub number: String,
    pub laps: u32,
    pub total_time: String,
    pub correction: String,
}

Corrected finish time

Sent each time a passing time is corrected (this can be due to a photocell time being associated with a competitor after the Passing message was already sent).

Fields

registration_number: Stringnumber: Stringlaps: u32total_time: String

The corrected total time

correction: String

The total time corrections from the previous passing message

Trait Implementations

impl Clone for Correction[src]

impl Debug for Correction[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.