#[non_exhaustive]pub enum ValueInformationCoding {
Primary,
PlainText,
MainVIFExtension,
AlternateVIFExtension,
ManufacturerSpecific,
}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 Clone for ValueInformationCoding
impl Clone for ValueInformationCoding
Source§fn clone(&self) -> ValueInformationCoding
fn clone(&self) -> ValueInformationCoding
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 ValueInformationCoding
impl Debug for ValueInformationCoding
Source§impl From<&ValueInformationField> for ValueInformationCoding
impl From<&ValueInformationField> for ValueInformationCoding
Source§fn from(value_information: &ValueInformationField) -> Self
fn from(value_information: &ValueInformationField) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ValueInformationCoding
impl PartialEq for ValueInformationCoding
impl Copy for ValueInformationCoding
impl StructuralPartialEq for ValueInformationCoding
Auto Trait Implementations§
impl Freeze for ValueInformationCoding
impl RefUnwindSafe for ValueInformationCoding
impl Send for ValueInformationCoding
impl Sync for ValueInformationCoding
impl Unpin for ValueInformationCoding
impl UnsafeUnpin for ValueInformationCoding
impl UnwindSafe for ValueInformationCoding
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