pub struct T2DeliverySystem<'a> {
pub plp_id: u8,
pub t2_system_id: u16,
pub siso_miso: Option<u8>,
pub bandwidth: Option<u8>,
pub guard_interval: Option<u8>,
pub transmission_mode: Option<u8>,
pub other_frequency_flag: Option<bool>,
pub tfs_flag: Option<bool>,
pub cell_loop: &'a [u8],
}Expand description
T2_delivery_system body (Table 133). cell_loop is the raw remainder.
Fields§
§plp_id: u8PLP identifier.
t2_system_id: u16T2 system identifier.
siso_miso: Option<u8>SISO_MISO(2), present iff descriptor_length > 4 (flags block present).
bandwidth: Option<u8>bandwidth(4), present with siso_miso.
guard_interval: Option<u8>guard_interval(3), present with siso_miso.
transmission_mode: Option<u8>transmission_mode(3), present with siso_miso.
other_frequency_flag: Option<bool>other_frequency_flag(1), present with siso_miso.
tfs_flag: Option<bool>tfs_flag(1), present with siso_miso.
cell_loop: &'a [u8]Raw cell loop (Table 133 inner for), kept raw (SAT precedent).
Trait Implementations§
Source§impl<'a> Clone for T2DeliverySystem<'a>
impl<'a> Clone for T2DeliverySystem<'a>
Source§fn clone(&self) -> T2DeliverySystem<'a>
fn clone(&self) -> T2DeliverySystem<'a>
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 moreSource§impl<'a> Debug for T2DeliverySystem<'a>
impl<'a> Debug for T2DeliverySystem<'a>
impl<'a> Eq for T2DeliverySystem<'a>
Source§impl<'a> PartialEq for T2DeliverySystem<'a>
impl<'a> PartialEq for T2DeliverySystem<'a>
Source§fn eq(&self, other: &T2DeliverySystem<'a>) -> bool
fn eq(&self, other: &T2DeliverySystem<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for T2DeliverySystem<'a>
impl<'a> Serialize for T2DeliverySystem<'a>
impl<'a> StructuralPartialEq for T2DeliverySystem<'a>
Source§impl<'a> Yokeable<'a> for T2DeliverySystem<'static>
impl<'a> Yokeable<'a> for T2DeliverySystem<'static>
Source§type Output = T2DeliverySystem<'a>
type Output = T2DeliverySystem<'a>
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Auto Trait Implementations§
impl<'a> Freeze for T2DeliverySystem<'a>
impl<'a> RefUnwindSafe for T2DeliverySystem<'a>
impl<'a> Send for T2DeliverySystem<'a>
impl<'a> Sync for T2DeliverySystem<'a>
impl<'a> Unpin for T2DeliverySystem<'a>
impl<'a> UnsafeUnpin for T2DeliverySystem<'a>
impl<'a> UnwindSafe for T2DeliverySystem<'a>
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