pub struct CableDeliverySystemDescriptor {
pub frequency_bcd: u32,
pub fec_outer: FecOuter,
pub modulation: Modulation,
pub symbol_rate_bcd: u32,
pub fec_inner: FecInner,
}Expand description
Cable Delivery System Descriptor.
Fields§
§frequency_bcd: u3232-bit BCD frequency in 100 kHz (e.g. 0x03460000 = 346.0000 MHz).
fec_outer: FecOuterFEC outer coding scheme.
modulation: ModulationModulation scheme.
symbol_rate_bcd: u3228-bit BCD symbol rate in Msym/s (value stored in low 28 bits of u32).
fec_inner: FecInnerFEC inner code rate.
Trait Implementations§
Source§impl Clone for CableDeliverySystemDescriptor
impl Clone for CableDeliverySystemDescriptor
Source§fn clone(&self) -> CableDeliverySystemDescriptor
fn clone(&self) -> CableDeliverySystemDescriptor
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 CableDeliverySystemDescriptor
Source§impl<'a> Descriptor<'a> for CableDeliverySystemDescriptor
impl<'a> Descriptor<'a> for CableDeliverySystemDescriptor
Source§impl<'a> DescriptorDef<'a> for CableDeliverySystemDescriptor
impl<'a> DescriptorDef<'a> for CableDeliverySystemDescriptor
impl Eq for CableDeliverySystemDescriptor
Source§impl<'a> From<CableDeliverySystemDescriptor> for AnyDescriptor<'a>
impl<'a> From<CableDeliverySystemDescriptor> for AnyDescriptor<'a>
Source§fn from(d: CableDeliverySystemDescriptor) -> Self
fn from(d: CableDeliverySystemDescriptor) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for CableDeliverySystemDescriptor
impl<'a> Parse<'a> for CableDeliverySystemDescriptor
Source§impl PartialEq for CableDeliverySystemDescriptor
impl PartialEq for CableDeliverySystemDescriptor
Source§fn eq(&self, other: &CableDeliverySystemDescriptor) -> bool
fn eq(&self, other: &CableDeliverySystemDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CableDeliverySystemDescriptor
impl Serialize for CableDeliverySystemDescriptor
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 CableDeliverySystemDescriptor
Auto Trait Implementations§
impl Freeze for CableDeliverySystemDescriptor
impl RefUnwindSafe for CableDeliverySystemDescriptor
impl Send for CableDeliverySystemDescriptor
impl Sync for CableDeliverySystemDescriptor
impl Unpin for CableDeliverySystemDescriptor
impl UnsafeUnpin for CableDeliverySystemDescriptor
impl UnwindSafe for CableDeliverySystemDescriptor
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