#[non_exhaustive]pub enum HowRelated {
Cs2004,
Cs2005,
Cs2007,
DvbReserved(u8),
UserPrivate(u8),
}Expand description
How-related classification scheme ID — ETSI TS 102 323 §10.4.3 Table 112.
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.
Cs2004
0x00 — HowRelatedCS:2004.
Cs2005
0x01 — HowRelatedCS:2005.
Cs2007
0x02 — HowRelatedCS:2007.
DvbReserved(u8)
0x03..=0x2F — DVB reserved.
UserPrivate(u8)
0x30..=0x3F — User private.
Implementations§
Trait Implementations§
Source§impl Clone for HowRelated
impl Clone for HowRelated
Source§fn clone(&self) -> HowRelated
fn clone(&self) -> HowRelated
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 HowRelated
Source§impl Debug for HowRelated
impl Debug for HowRelated
impl Eq for HowRelated
Source§impl PartialEq for HowRelated
impl PartialEq for HowRelated
Source§fn eq(&self, other: &HowRelated) -> bool
fn eq(&self, other: &HowRelated) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HowRelated
impl Serialize for HowRelated
impl StructuralPartialEq for HowRelated
Auto Trait Implementations§
impl Freeze for HowRelated
impl RefUnwindSafe for HowRelated
impl Send for HowRelated
impl Sync for HowRelated
impl Unpin for HowRelated
impl UnsafeUnpin for HowRelated
impl UnwindSafe for HowRelated
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