#[non_exhaustive]pub enum C2TuningFrequencyType {
DataSliceTuningFrequency,
C2SystemCentreFrequency,
InitialTuningPositionStaticDataSlice,
Reserved(u8),
}Expand description
C2 system tuning frequency type — ETSI EN 300 468 Table 116.
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.
DataSliceTuningFrequency
0b00 — Data Slice tuning frequency.
C2SystemCentreFrequency
0b01 — C2 system centre frequency.
InitialTuningPositionStaticDataSlice
0b10 — Initial tuning position for a (dependent) Static Data Slice.
Reserved(u8)
Reserved / future use.
Implementations§
Trait Implementations§
Source§impl Clone for C2TuningFrequencyType
impl Clone for C2TuningFrequencyType
Source§fn clone(&self) -> C2TuningFrequencyType
fn clone(&self) -> C2TuningFrequencyType
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 C2TuningFrequencyType
Source§impl Debug for C2TuningFrequencyType
impl Debug for C2TuningFrequencyType
Source§impl Display for C2TuningFrequencyType
impl Display for C2TuningFrequencyType
impl Eq for C2TuningFrequencyType
Source§impl PartialEq for C2TuningFrequencyType
impl PartialEq for C2TuningFrequencyType
Source§fn eq(&self, other: &C2TuningFrequencyType) -> bool
fn eq(&self, other: &C2TuningFrequencyType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for C2TuningFrequencyType
impl Serialize for C2TuningFrequencyType
impl StructuralPartialEq for C2TuningFrequencyType
Auto Trait Implementations§
impl Freeze for C2TuningFrequencyType
impl RefUnwindSafe for C2TuningFrequencyType
impl Send for C2TuningFrequencyType
impl Sync for C2TuningFrequencyType
impl Unpin for C2TuningFrequencyType
impl UnsafeUnpin for C2TuningFrequencyType
impl UnwindSafe for C2TuningFrequencyType
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