pub struct PmtStream<'a> {
pub stream_type: u8,
pub elementary_pid: u16,
pub es_info: DescriptorLoop<'a>,
}Expand description
One elementary stream entry in the PMT’s ES loop.
Fields§
§stream_type: u8MPEG-2 stream_type byte (ISO/IEC 13818-1 Table 2-34).
elementary_pid: u1613-bit elementary stream PID.
es_info: DescriptorLoop<'a>Raw ES_info descriptor bytes; parsing lives in crate::descriptors.
Elementary-stream descriptor loop. Serializes as the typed descriptor
sequence; .raw() yields the wire bytes.
Trait Implementations§
impl<'a> Eq for PmtStream<'a>
Source§impl<'a> PartialEq for PmtStream<'a>
impl<'a> PartialEq for PmtStream<'a>
impl<'a> StructuralPartialEq for PmtStream<'a>
Source§impl<'a> Yokeable<'a> for PmtStream<'static>
impl<'a> Yokeable<'a> for PmtStream<'static>
Source§type Output = PmtStream<'a>
type Output = PmtStream<'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 PmtStream<'a>
impl<'a> RefUnwindSafe for PmtStream<'a>
impl<'a> Send for PmtStream<'a>
impl<'a> Sync for PmtStream<'a>
impl<'a> Unpin for PmtStream<'a>
impl<'a> UnsafeUnpin for PmtStream<'a>
impl<'a> UnwindSafe for PmtStream<'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