pub struct ShDeliverySystem {
pub diversity_mode: ShDiversityMode,
pub modulations: Vec<ShModulation>,
}Expand description
SH_delivery_system body (Table 119, §6.4.6.2). The modulation loop is
unfolded; modulation_type (Table 121) selects Tdm/Ofdm,
interleaver_presence (Table 122) gates the interleaver, and
interleaver_type selects its layout. Diversity mode: Table 120.
Fields§
§diversity_mode: ShDiversityModediversity_mode — Table 120.
modulations: Vec<ShModulation>Modulation entries (the loop to end of body).
Trait Implementations§
Source§impl Clone for ShDeliverySystem
impl Clone for ShDeliverySystem
Source§fn clone(&self) -> ShDeliverySystem
fn clone(&self) -> ShDeliverySystem
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 Debug for ShDeliverySystem
impl Debug for ShDeliverySystem
impl Eq for ShDeliverySystem
Source§impl<'a> ExtensionBodyDef<'a> for ShDeliverySystem
impl<'a> ExtensionBodyDef<'a> for ShDeliverySystem
Source§impl<'a> Parse<'a> for ShDeliverySystem
impl<'a> Parse<'a> for ShDeliverySystem
Source§impl PartialEq for ShDeliverySystem
impl PartialEq for ShDeliverySystem
Source§fn eq(&self, other: &ShDeliverySystem) -> bool
fn eq(&self, other: &ShDeliverySystem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ShDeliverySystem
impl Serialize for ShDeliverySystem
Source§impl Serialize for ShDeliverySystem
impl Serialize for ShDeliverySystem
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for ShDeliverySystem
Auto Trait Implementations§
impl Freeze for ShDeliverySystem
impl RefUnwindSafe for ShDeliverySystem
impl Send for ShDeliverySystem
impl Sync for ShDeliverySystem
impl Unpin for ShDeliverySystem
impl UnsafeUnpin for ShDeliverySystem
impl UnwindSafe for ShDeliverySystem
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