pub struct MsCaPmtStream<'a> {
pub stream_type: u8,
pub elementary_pid: u16,
pub cmd_id: Option<CaPmtCmdId>,
pub ca_descriptors: &'a [u8],
}Expand description
One elementary-stream entry of a CI Plus multi-stream ca_pmt (Table 14).
Fields§
§stream_type: u8MPEG-2 stream_type.
elementary_pid: u1613-bit elementary_PID.
cmd_id: Option<CaPmtCmdId>ca_pmt_cmd_id for this ES — present only when ES_info_length != 0.
ca_descriptors: &'a [u8]ES-level CA_descriptor() loop, verbatim wire bytes (no cmd_id).
Trait Implementations§
Source§impl<'a> Clone for MsCaPmtStream<'a>
impl<'a> Clone for MsCaPmtStream<'a>
Source§fn clone(&self) -> MsCaPmtStream<'a>
fn clone(&self) -> MsCaPmtStream<'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 MsCaPmtStream<'a>
impl<'a> Debug for MsCaPmtStream<'a>
impl<'a> Eq for MsCaPmtStream<'a>
Source§impl<'a> PartialEq for MsCaPmtStream<'a>
impl<'a> PartialEq for MsCaPmtStream<'a>
Source§impl<'a> Serialize for MsCaPmtStream<'a>
Available on crate feature serde only.
impl<'a> Serialize for MsCaPmtStream<'a>
Available on crate feature
serde only.impl<'a> StructuralPartialEq for MsCaPmtStream<'a>
Auto Trait Implementations§
impl<'a> Freeze for MsCaPmtStream<'a>
impl<'a> RefUnwindSafe for MsCaPmtStream<'a>
impl<'a> Send for MsCaPmtStream<'a>
impl<'a> Sync for MsCaPmtStream<'a>
impl<'a> Unpin for MsCaPmtStream<'a>
impl<'a> UnsafeUnpin for MsCaPmtStream<'a>
impl<'a> UnwindSafe for MsCaPmtStream<'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