#[non_exhaustive]pub enum T2GuardInterval {
G1_32,
G1_16,
G1_8,
G1_4,
G1_128,
G19_128,
G19_256,
Reserved(u8),
}Expand description
Guard interval — ETSI EN 300 468 Table 136.
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.
G1_32
1/32.
G1_16
1/16.
G1_8
1/8.
G1_4
1/4.
G1_128
1/128.
G19_128
19/128.
G19_256
19/256.
Reserved(u8)
Reserved / future use.
Implementations§
Trait Implementations§
Source§impl Clone for T2GuardInterval
impl Clone for T2GuardInterval
Source§fn clone(&self) -> T2GuardInterval
fn clone(&self) -> T2GuardInterval
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 T2GuardInterval
Source§impl Debug for T2GuardInterval
impl Debug for T2GuardInterval
Source§impl Display for T2GuardInterval
impl Display for T2GuardInterval
impl Eq for T2GuardInterval
Source§impl PartialEq for T2GuardInterval
impl PartialEq for T2GuardInterval
Source§fn eq(&self, other: &T2GuardInterval) -> bool
fn eq(&self, other: &T2GuardInterval) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for T2GuardInterval
impl Serialize for T2GuardInterval
impl StructuralPartialEq for T2GuardInterval
Auto Trait Implementations§
impl Freeze for T2GuardInterval
impl RefUnwindSafe for T2GuardInterval
impl Send for T2GuardInterval
impl Sync for T2GuardInterval
impl Unpin for T2GuardInterval
impl UnsafeUnpin for T2GuardInterval
impl UnwindSafe for T2GuardInterval
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