#[repr(u32)]pub enum ProfileVersion {
V2_0 = 33_554_432,
V2_1 = 34_603_008,
V2_2 = 35_651_584,
V2_3 = 36_700_160,
V2_4 = 37_748_736,
V4_0 = 67_108_864,
V4_1 = 68_157_440,
V4_2 = 69_206_016,
V4_3 = 70_254_592,
V4_4 = 71_303_168,
Unknown = 71303169,
}
Variants§
V2_0 = 33_554_432
V2_1 = 34_603_008
V2_2 = 35_651_584
V2_3 = 36_700_160
V2_4 = 37_748_736
V4_0 = 67_108_864
V4_1 = 68_157_440
V4_2 = 69_206_016
V4_3 = 70_254_592
V4_4 = 71_303_168
Unknown = 71303169
Trait Implementations§
Source§impl Clone for ProfileVersion
impl Clone for ProfileVersion
Source§fn clone(&self) -> ProfileVersion
fn clone(&self) -> ProfileVersion
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 ProfileVersion
impl Debug for ProfileVersion
Source§impl Default for ProfileVersion
impl Default for ProfileVersion
Source§fn default() -> ProfileVersion
fn default() -> ProfileVersion
Returns the “default value” for a type. Read more
Source§impl From<ProfileVersion> for u32
impl From<ProfileVersion> for u32
Source§fn from(value: ProfileVersion) -> Self
fn from(value: ProfileVersion) -> Self
Converts to this type from the input type.
Source§impl Ord for ProfileVersion
impl Ord for ProfileVersion
Source§fn cmp(&self, other: &ProfileVersion) -> Ordering
fn cmp(&self, other: &ProfileVersion) -> 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 ProfileVersion
impl PartialEq for ProfileVersion
Source§impl PartialOrd for ProfileVersion
impl PartialOrd for ProfileVersion
Source§impl TryFrom<u32> for ProfileVersion
impl TryFrom<u32> for ProfileVersion
impl Copy for ProfileVersion
impl Eq for ProfileVersion
impl StructuralPartialEq for ProfileVersion
Auto Trait Implementations§
impl Freeze for ProfileVersion
impl RefUnwindSafe for ProfileVersion
impl Send for ProfileVersion
impl Sync for ProfileVersion
impl Unpin for ProfileVersion
impl UnwindSafe for ProfileVersion
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