#[non_exhaustive]pub enum SpecifierType {
IeeeOui,
Unallocated(u8),
}Expand description
Compatibility specifier type — TS 102 006 Table 15 / ISO/IEC 13818-6.
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.
Implementations§
Trait Implementations§
Source§impl Clone for SpecifierType
impl Clone for SpecifierType
Source§fn clone(&self) -> SpecifierType
fn clone(&self) -> SpecifierType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SpecifierType
Source§impl Debug for SpecifierType
impl Debug for SpecifierType
impl Eq for SpecifierType
Source§impl PartialEq for SpecifierType
impl PartialEq for SpecifierType
Source§fn eq(&self, other: &SpecifierType) -> bool
fn eq(&self, other: &SpecifierType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SpecifierType
impl Serialize for SpecifierType
impl StructuralPartialEq for SpecifierType
Auto Trait Implementations§
impl Freeze for SpecifierType
impl RefUnwindSafe for SpecifierType
impl Send for SpecifierType
impl Sync for SpecifierType
impl Unpin for SpecifierType
impl UnsafeUnpin for SpecifierType
impl UnwindSafe for SpecifierType
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