pub struct MsCaPmtReply {
pub lts_id: u8,
pub program_number: u16,
pub version_number: u8,
pub current_next_indicator: bool,
pub ca_enable: Option<CaEnable>,
pub streams: Vec<MsCaPmtReplyStream>,
}Expand description
CI Plus multi-stream ca_pmt_reply() (Table 16): CICAM → Host. Differs from
the EN 50221 ca_pmt_reply by the leading LTS_id.
Fields§
§lts_id: u8LTS_id (8) — Local TS identifier.
program_number: u16program_number (16).
version_number: u85-bit version_number.
current_next_indicator: boolcurrent_next_indicator.
ca_enable: Option<CaEnable>Programme-level CA_enable — Some iff the programme CA_enable_flag bit
was set.
streams: Vec<MsCaPmtReplyStream>Per-ES entries in wire order.
Trait Implementations§
Source§impl Clone for MsCaPmtReply
impl Clone for MsCaPmtReply
Source§fn clone(&self) -> MsCaPmtReply
fn clone(&self) -> MsCaPmtReply
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 MsCaPmtReply
impl Debug for MsCaPmtReply
impl Eq for MsCaPmtReply
Source§impl<'a> Parse<'a> for MsCaPmtReply
impl<'a> Parse<'a> for MsCaPmtReply
Source§impl PartialEq for MsCaPmtReply
impl PartialEq for MsCaPmtReply
Source§impl Serialize for MsCaPmtReply
Available on crate feature serde only.
impl Serialize for MsCaPmtReply
Available on crate feature
serde only.Source§impl Serialize for MsCaPmtReply
impl Serialize for MsCaPmtReply
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 MsCaPmtReply
Auto Trait Implementations§
impl Freeze for MsCaPmtReply
impl RefUnwindSafe for MsCaPmtReply
impl Send for MsCaPmtReply
impl Sync for MsCaPmtReply
impl Unpin for MsCaPmtReply
impl UnsafeUnpin for MsCaPmtReply
impl UnwindSafe for MsCaPmtReply
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