pub struct C2BundleEntry {
pub plp_id: u8,
pub data_slice_id: u8,
pub c2_system_tuning_frequency: u32,
pub c2_system_tuning_frequency_type: u8,
pub active_ofdm_symbol_duration: u8,
pub guard_interval: u8,
pub primary_channel: bool,
}Expand description
One C2 bundle entry (Table 139 inner loop).
Fields§
§plp_id: u8plp_id(8).
data_slice_id: u8data_slice_id(8).
c2_system_tuning_frequency: u32C2_System_tuning_frequency(32).
c2_system_tuning_frequency_type: u8C2_System_tuning_frequency_type(2).
active_ofdm_symbol_duration: u8active_OFDM_symbol_duration(3).
guard_interval: u8guard_interval(3).
primary_channel: boolprimary_channel(1).
Trait Implementations§
Source§impl Clone for C2BundleEntry
impl Clone for C2BundleEntry
Source§fn clone(&self) -> C2BundleEntry
fn clone(&self) -> C2BundleEntry
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 C2BundleEntry
Source§impl Debug for C2BundleEntry
impl Debug for C2BundleEntry
impl Eq for C2BundleEntry
Source§impl PartialEq for C2BundleEntry
impl PartialEq for C2BundleEntry
Source§fn eq(&self, other: &C2BundleEntry) -> bool
fn eq(&self, other: &C2BundleEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for C2BundleEntry
impl Serialize for C2BundleEntry
impl StructuralPartialEq for C2BundleEntry
Auto Trait Implementations§
impl Freeze for C2BundleEntry
impl RefUnwindSafe for C2BundleEntry
impl Send for C2BundleEntry
impl Sync for C2BundleEntry
impl Unpin for C2BundleEntry
impl UnsafeUnpin for C2BundleEntry
impl UnwindSafe for C2BundleEntry
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