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 · 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 SubtableID
impl Debug for SubtableID
Source§impl Hash for SubtableID
impl Hash for SubtableID
Source§impl PartialEq for SubtableID
impl PartialEq for SubtableID
impl Copy for SubtableID
impl Eq for SubtableID
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 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