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