pub enum ResultStatus {
Invalid,
Inactive,
Active,
Finished,
Disqualified,
NotClassified,
Retired,
}
Expand description
Statuses that classify the result
Variants§
Invalid
The results are invalid.
Inactive
The results are not being collected yet.
Active
The results are being actively collected.
Finished
The session has finished and the results are final.
Disqualified
The car has been disqualified from the session.
NotClassified
The car failed to classify in the session, for example because it did not achieve the required number of laps.
Retired
The car has been retired.
Trait Implementations§
Source§impl Clone for ResultStatus
impl Clone for ResultStatus
Source§fn clone(&self) -> ResultStatus
fn clone(&self) -> ResultStatus
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 moreSource§impl Debug for ResultStatus
impl Debug for ResultStatus
Source§impl Default for ResultStatus
impl Default for ResultStatus
Source§impl Hash for ResultStatus
impl Hash for ResultStatus
Source§impl Ord for ResultStatus
impl Ord for ResultStatus
Source§fn cmp(&self, other: &ResultStatus) -> Ordering
fn cmp(&self, other: &ResultStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ResultStatus
impl PartialEq for ResultStatus
Source§impl PartialOrd for ResultStatus
impl PartialOrd for ResultStatus
impl Copy for ResultStatus
impl Eq for ResultStatus
impl StructuralPartialEq for ResultStatus
Auto Trait Implementations§
impl Freeze for ResultStatus
impl RefUnwindSafe for ResultStatus
impl Send for ResultStatus
impl Sync for ResultStatus
impl Unpin for ResultStatus
impl UnwindSafe for ResultStatus
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