pub enum SubtableID {
PAT(TableID, u16, u8),
PMT(TableID, u16, u8),
SDT(TableID, u16, u16, u8),
EIT(TableID, u16, u16, u16, u8),
}Variants§
PAT(TableID, u16, u8)
(table-id, transport-stream-id(ext) [, version-number])
PMT(TableID, u16, u8)
(table-id, program-number(ext) [, version-number])
SDT(TableID, u16, u16, u8)
(table-id, transport-stream-id(ext), original-network-id, version-number)
EIT(TableID, u16, u16, u16, u8)
(table-id, service-id(ext), transport-stream-id, original-network-id, version-number)
Trait Implementations§
Source§impl Clone for SubtableID
impl Clone for SubtableID
Source§fn clone(&self) -> SubtableID
fn clone(&self) -> SubtableID
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 SubtableID
Source§impl Debug for SubtableID
impl Debug for SubtableID
impl Eq for SubtableID
Source§impl Hash for SubtableID
impl Hash for SubtableID
Source§impl PartialEq for SubtableID
impl PartialEq for SubtableID
Source§fn eq(&self, other: &SubtableID) -> bool
fn eq(&self, other: &SubtableID) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SubtableID
Auto Trait Implementations§
impl Freeze for SubtableID
impl RefUnwindSafe for SubtableID
impl Send for SubtableID
impl Sync for SubtableID
impl Unpin for SubtableID
impl UnsafeUnpin for SubtableID
impl UnwindSafe for SubtableID
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