#[non_exhaustive]pub enum C2GuardInterval {
G1_128,
G1_64,
Reserved(u8),
}Expand description
C2 guard interval — ETSI EN 300 468 Table 118.
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 C2GuardInterval
impl Clone for C2GuardInterval
Source§fn clone(&self) -> C2GuardInterval
fn clone(&self) -> C2GuardInterval
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 C2GuardInterval
Source§impl Debug for C2GuardInterval
impl Debug for C2GuardInterval
Source§impl Display for C2GuardInterval
impl Display for C2GuardInterval
impl Eq for C2GuardInterval
Source§impl PartialEq for C2GuardInterval
impl PartialEq for C2GuardInterval
Source§fn eq(&self, other: &C2GuardInterval) -> bool
fn eq(&self, other: &C2GuardInterval) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for C2GuardInterval
impl Serialize for C2GuardInterval
impl StructuralPartialEq for C2GuardInterval
Auto Trait Implementations§
impl Freeze for C2GuardInterval
impl RefUnwindSafe for C2GuardInterval
impl Send for C2GuardInterval
impl Sync for C2GuardInterval
impl Unpin for C2GuardInterval
impl UnsafeUnpin for C2GuardInterval
impl UnwindSafe for C2GuardInterval
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