#[non_exhaustive]pub enum DynamicRacingLineType {
TwoDimensional = 0,
ThreeDimensional = 1,
}Expand description
Shape of the racing line. Represents a u8.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl BinRead for DynamicRacingLineType
impl BinRead for DynamicRacingLineType
Source§fn read_options<R: Read + Seek>(
__binrw_generated_var_reader: &mut R,
__binrw_generated_var_endian: Endian,
__binrw_generated_var_arguments: Self::Args<'_>,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binrw_generated_var_reader: &mut R, __binrw_generated_var_endian: Endian, __binrw_generated_var_arguments: Self::Args<'_>, ) -> BinResult<Self>
Source§fn read<R>(reader: &mut R) -> Result<Self, Error>
fn read<R>(reader: &mut R) -> Result<Self, Error>
Read
Self from the reader using default arguments. Read moreSource§fn read_be<R>(reader: &mut R) -> Result<Self, Error>
fn read_be<R>(reader: &mut R) -> Result<Self, Error>
Read
Self from the reader using default arguments and assuming
big-endian byte order. Read moreSource§fn read_le<R>(reader: &mut R) -> Result<Self, Error>
fn read_le<R>(reader: &mut R) -> Result<Self, Error>
Read
Self from the reader using default arguments and assuming
little-endian byte order. Read moreSource§fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
Read
T from the reader assuming native-endian byte order. Read moreSource§fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self from the reader using the given arguments. Read moreSource§fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self from the reader, assuming big-endian byte order, using the
given arguments. Read moreSource§impl Clone for DynamicRacingLineType
impl Clone for DynamicRacingLineType
Source§fn clone(&self) -> DynamicRacingLineType
fn clone(&self) -> DynamicRacingLineType
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 DynamicRacingLineType
impl Debug for DynamicRacingLineType
Source§impl<'de> Deserialize<'de> for DynamicRacingLineType
impl<'de> Deserialize<'de> for DynamicRacingLineType
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
Source§impl Hash for DynamicRacingLineType
impl Hash for DynamicRacingLineType
Source§impl Ord for DynamicRacingLineType
impl Ord for DynamicRacingLineType
Source§fn cmp(&self, other: &DynamicRacingLineType) -> Ordering
fn cmp(&self, other: &DynamicRacingLineType) -> 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 DynamicRacingLineType
impl PartialEq for DynamicRacingLineType
Source§impl PartialOrd for DynamicRacingLineType
impl PartialOrd for DynamicRacingLineType
Source§impl ReadEndian for DynamicRacingLineType
impl ReadEndian for DynamicRacingLineType
Source§const ENDIAN: EndianKind
const ENDIAN: EndianKind
The endianness of the type.
Source§impl Serialize for DynamicRacingLineType
impl Serialize for DynamicRacingLineType
impl Copy for DynamicRacingLineType
impl Eq for DynamicRacingLineType
impl StructuralPartialEq for DynamicRacingLineType
Auto Trait Implementations§
impl Freeze for DynamicRacingLineType
impl RefUnwindSafe for DynamicRacingLineType
impl Send for DynamicRacingLineType
impl Sync for DynamicRacingLineType
impl Unpin for DynamicRacingLineType
impl UnwindSafe for DynamicRacingLineType
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