#[non_exhaustive]pub struct CompleteSdtService<'a> {
pub service_id: u16,
pub eit_schedule_flag: bool,
pub eit_present_following_flag: bool,
pub running_status: RunningStatus,
pub free_ca_mode: bool,
pub descriptors: ParsedDescriptorLoop<'a>,
}Expand description
Service entry in a complete SDT.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.service_id: u16service_id.
eit_schedule_flag: boolEIT schedule flag.
eit_present_following_flag: boolEIT present/following flag.
running_status: RunningStatus3-bit running status (EN 300 468 Table 6).
free_ca_mode: boolfree_CA_mode.
descriptors: ParsedDescriptorLoop<'a>Typed descriptor loop for this service.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for CompleteSdtService<'a>
impl<'a> !UnwindSafe for CompleteSdtService<'a>
impl<'a> Freeze for CompleteSdtService<'a>
impl<'a> Send for CompleteSdtService<'a>
impl<'a> Sync for CompleteSdtService<'a>
impl<'a> Unpin for CompleteSdtService<'a>
impl<'a> UnsafeUnpin for CompleteSdtService<'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