#[non_exhaustive]#[repr(i32)]pub enum MdfWriterType {
Mdf3Basic = 0,
Mdf4Basic = 1,
MdfBusLogger = 2,
MdfConverter = 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.
Mdf3Basic = 0
< Basic MDF version 3 writer.
Mdf4Basic = 1
< Basic MDF version 4 writer.
MdfBusLogger = 2
< Specialized bus logger writer.
MdfConverter = 3
< MDF writer for MDF 4 conversion applications.
Trait Implementations§
Source§impl Clone for MdfWriterType
impl Clone for MdfWriterType
Source§fn clone(&self) -> MdfWriterType
fn clone(&self) -> MdfWriterType
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 MdfWriterType
impl Debug for MdfWriterType
Source§impl Hash for MdfWriterType
impl Hash for MdfWriterType
Source§impl Ord for MdfWriterType
impl Ord for MdfWriterType
Source§fn cmp(&self, other: &MdfWriterType) -> Ordering
fn cmp(&self, other: &MdfWriterType) -> 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 MdfWriterType
impl PartialEq for MdfWriterType
Source§impl PartialOrd for MdfWriterType
impl PartialOrd for MdfWriterType
impl Copy for MdfWriterType
impl Eq for MdfWriterType
impl StructuralPartialEq for MdfWriterType
Auto Trait Implementations§
impl Freeze for MdfWriterType
impl RefUnwindSafe for MdfWriterType
impl Send for MdfWriterType
impl Sync for MdfWriterType
impl Unpin for MdfWriterType
impl UnsafeUnpin for MdfWriterType
impl UnwindSafe for MdfWriterType
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