pub struct CompleteNit<'a> {
pub kind: NitKind,
pub network_id: u16,
pub version_number: u8,
pub current_next_indicator: bool,
pub network_descriptors: ParsedDescriptorLoop<'a>,
pub transport_streams: Vec<CompleteNitTransportStream<'a>>,
}Expand description
Complete logical Network Information Table.
Fields§
§kind: NitKindVariant discriminator.
network_id: u16Network identifier.
version_number: u85-bit version_number.
current_next_indicator: boolcurrent_next_indicator bit.
network_descriptors: ParsedDescriptorLoop<'a>Network-wide descriptors from section 0.
transport_streams: Vec<CompleteNitTransportStream<'a>>Transport-stream loop entries from all sections in wire order.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for CompleteNit<'a>
impl<'a> !UnwindSafe for CompleteNit<'a>
impl<'a> Freeze for CompleteNit<'a>
impl<'a> Send for CompleteNit<'a>
impl<'a> Sync for CompleteNit<'a>
impl<'a> Unpin for CompleteNit<'a>
impl<'a> UnsafeUnpin for CompleteNit<'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