pub struct CompleteEit<'a> {
pub kind: EitKind,
pub table_id: u8,
pub service_id: u16,
pub version_number: u8,
pub current_next_indicator: bool,
pub transport_stream_id: u16,
pub original_network_id: u16,
pub segment_last_section_number: u8,
pub last_table_id: u8,
pub events: Vec<CompleteEitEvent<'a>>,
}Expand description
Complete EIT for one exact table_id/extension section sequence.
EIT schedule collection across last_table_id is intentionally represented
as multiple complete section sets: one per schedule table_id. That preserves
the DVB schedule sub-table structure while still exposing flattened events.
Fields§
§kind: EitKindVariant based on table_id.
table_id: u8Raw table_id byte.
service_id: u16service_id.
version_number: u85-bit version_number.
current_next_indicator: boolcurrent_next_indicator bit.
transport_stream_id: u16transport_stream_id.
original_network_id: u16original_network_id.
segment_last_section_number: u8segment_last_section_number from section 0.
last_table_id: u8last_table_id.
events: Vec<CompleteEitEvent<'a>>Events from all sections in wire order.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for CompleteEit<'a>
impl<'a> !UnwindSafe for CompleteEit<'a>
impl<'a> Freeze for CompleteEit<'a>
impl<'a> Send for CompleteEit<'a>
impl<'a> Sync for CompleteEit<'a>
impl<'a> Unpin for CompleteEit<'a>
impl<'a> UnsafeUnpin for CompleteEit<'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