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