pub struct RaceControl {
pub category: String,
pub date: String,
pub driver_number: Option<i64>,
pub flag: Option<String>,
pub lap_number: Option<i64>,
pub meeting_key: i64,
pub message: String,
pub qualifying_phase: Option<i64>,
pub scope: Option<String>,
pub sector: Option<i64>,
pub session_key: i64,
}Fields§
§category: String§date: String§driver_number: Option<i64>§flag: Option<String>§lap_number: Option<i64>§meeting_key: i64§message: String§qualifying_phase: Option<i64>§scope: Option<String>§sector: Option<i64>§session_key: i64Trait Implementations§
Source§impl Clone for RaceControl
impl Clone for RaceControl
Source§fn clone(&self) -> RaceControl
fn clone(&self) -> RaceControl
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RaceControl
impl Debug for RaceControl
Source§impl<'de> Deserialize<'de> for RaceControl
impl<'de> Deserialize<'de> for RaceControl
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RaceControl
impl RefUnwindSafe for RaceControl
impl Send for RaceControl
impl Sync for RaceControl
impl Unpin for RaceControl
impl UnsafeUnpin for RaceControl
impl UnwindSafe for RaceControl
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