#[non_exhaustive]#[repr(u32)]pub enum FwhtVersion {
V3 = 3,
}
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.
V3 = 3
Trait Implementations§
Source§impl AsRef<u32> for FwhtVersion
impl AsRef<u32> for FwhtVersion
Source§impl Clone for FwhtVersion
impl Clone for FwhtVersion
Source§fn clone(&self) -> FwhtVersion
fn clone(&self) -> FwhtVersion
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 FwhtVersion
impl Debug for FwhtVersion
Source§impl Deref for FwhtVersion
impl Deref for FwhtVersion
Source§impl Display for FwhtVersion
impl Display for FwhtVersion
Source§impl From<FwhtVersion> for u32
impl From<FwhtVersion> for u32
Source§fn from(data: FwhtVersion) -> Self
fn from(data: FwhtVersion) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FwhtVersion
impl PartialEq for FwhtVersion
Source§impl TryFrom<u32> for FwhtVersion
impl TryFrom<u32> for FwhtVersion
impl Copy for FwhtVersion
impl Eq for FwhtVersion
impl StructuralPartialEq for FwhtVersion
Auto Trait Implementations§
impl Freeze for FwhtVersion
impl RefUnwindSafe for FwhtVersion
impl Send for FwhtVersion
impl Sync for FwhtVersion
impl Unpin for FwhtVersion
impl UnwindSafe for FwhtVersion
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