#[non_exhaustive]pub enum L1CodeRate {
R1_2,
Reserved(u8),
}Expand description
L1-post code rate — EN 302 755 §7.2.2 Table 25 (2-bit field).
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§
Source§impl L1CodeRate
impl L1CodeRate
Trait Implementations§
Source§impl Clone for L1CodeRate
impl Clone for L1CodeRate
Source§fn clone(&self) -> L1CodeRate
fn clone(&self) -> L1CodeRate
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 L1CodeRate
Source§impl Debug for L1CodeRate
impl Debug for L1CodeRate
Source§impl Display for L1CodeRate
impl Display for L1CodeRate
impl Eq for L1CodeRate
Source§impl PartialEq for L1CodeRate
impl PartialEq for L1CodeRate
Source§impl Serialize for L1CodeRate
Available on crate feature serde only.
impl Serialize for L1CodeRate
Available on crate feature
serde only.impl StructuralPartialEq for L1CodeRate
Auto Trait Implementations§
impl Freeze for L1CodeRate
impl RefUnwindSafe for L1CodeRate
impl Send for L1CodeRate
impl Sync for L1CodeRate
impl Unpin for L1CodeRate
impl UnsafeUnpin for L1CodeRate
impl UnwindSafe for L1CodeRate
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