pub struct CompleteBat<'a> {
pub bouquet_id: u16,
pub version_number: u8,
pub current_next_indicator: bool,
pub bouquet_descriptors: ParsedDescriptorLoop<'a>,
pub transport_streams: Vec<CompleteBatTransportStream<'a>>,
}Expand description
Complete logical Bouquet Association Table.
Fields§
§bouquet_id: u16Bouquet identifier.
version_number: u85-bit version_number.
current_next_indicator: boolcurrent_next_indicator bit.
bouquet_descriptors: ParsedDescriptorLoop<'a>Bouquet descriptors from section 0.
transport_streams: Vec<CompleteBatTransportStream<'a>>Transport-stream loop entries from all sections in wire order.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for CompleteBat<'a>
impl<'a> !UnwindSafe for CompleteBat<'a>
impl<'a> Freeze for CompleteBat<'a>
impl<'a> Send for CompleteBat<'a>
impl<'a> Sync for CompleteBat<'a>
impl<'a> Unpin for CompleteBat<'a>
impl<'a> UnsafeUnpin for CompleteBat<'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