pub struct LineCrossing {
pub number: String,
pub timeline_number: String,
pub timeline_name: String,
pub date: String,
pub time: String,
pub driver_id: Option<u8>,
pub class_name: Option<String>,
}Expand description
Timeline crossing message
Sent each time a competitor crosses a timeline, this message type is part of the IMSA Enhanced specification.
Fields§
§number: String§timeline_number: String§timeline_name: String§date: String§time: String§driver_id: Option<u8>§class_name: Option<String>Trait Implementations§
Source§impl Clone for LineCrossing
impl Clone for LineCrossing
Source§fn clone(&self) -> LineCrossing
fn clone(&self) -> LineCrossing
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LineCrossing
impl RefUnwindSafe for LineCrossing
impl Send for LineCrossing
impl Sync for LineCrossing
impl Unpin for LineCrossing
impl UnwindSafe for LineCrossing
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