pub enum SelectionCategoryEnum {
ReportTypeEnum(ReportTypeEnum),
UserListEnum(UserListEnum),
PersonalStatsCategoryEnum(PersonalStatsCategoryEnum),
RacingRaceTypeEnum(RacingRaceTypeEnum),
}
Variants§
ReportTypeEnum(ReportTypeEnum)
UserListEnum(UserListEnum)
PersonalStatsCategoryEnum(PersonalStatsCategoryEnum)
RacingRaceTypeEnum(RacingRaceTypeEnum)
Trait Implementations§
Source§impl Clone for SelectionCategoryEnum
impl Clone for SelectionCategoryEnum
Source§fn clone(&self) -> SelectionCategoryEnum
fn clone(&self) -> SelectionCategoryEnum
Returns a copy 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 SelectionCategoryEnum
impl Debug for SelectionCategoryEnum
Source§impl<'de> Deserialize<'de> for SelectionCategoryEnum
impl<'de> Deserialize<'de> for SelectionCategoryEnum
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 Display for SelectionCategoryEnum
impl Display for SelectionCategoryEnum
Source§impl From<PersonalStatsCategoryEnum> for SelectionCategoryEnum
impl From<PersonalStatsCategoryEnum> for SelectionCategoryEnum
Source§fn from(value: PersonalStatsCategoryEnum) -> Self
fn from(value: PersonalStatsCategoryEnum) -> Self
Converts to this type from the input type.
Source§impl From<RacingRaceTypeEnum> for SelectionCategoryEnum
impl From<RacingRaceTypeEnum> for SelectionCategoryEnum
Source§fn from(value: RacingRaceTypeEnum) -> Self
fn from(value: RacingRaceTypeEnum) -> Self
Converts to this type from the input type.
Source§impl From<ReportTypeEnum> for SelectionCategoryEnum
impl From<ReportTypeEnum> for SelectionCategoryEnum
Source§fn from(value: ReportTypeEnum) -> Self
fn from(value: ReportTypeEnum) -> Self
Converts to this type from the input type.
Source§impl From<UserListEnum> for SelectionCategoryEnum
impl From<UserListEnum> for SelectionCategoryEnum
Source§fn from(value: UserListEnum) -> Self
fn from(value: UserListEnum) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SelectionCategoryEnum
impl PartialEq for SelectionCategoryEnum
impl StructuralPartialEq for SelectionCategoryEnum
Auto Trait Implementations§
impl Freeze for SelectionCategoryEnum
impl RefUnwindSafe for SelectionCategoryEnum
impl Send for SelectionCategoryEnum
impl Sync for SelectionCategoryEnum
impl Unpin for SelectionCategoryEnum
impl UnwindSafe for SelectionCategoryEnum
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