pub struct AdaptationFieldDataFlags {
pub announcement_switching_data: bool,
pub au_information: bool,
pub pvr_assist_information: bool,
}Expand description
Decoded adaptation field data flags — ETSI EN 300 468 Table 14.
Bit numbering per the spec: b₁ (LSB, transmitted last per §5.1.6)
through b₈ (MSB).
Fields§
§announcement_switching_data: boolAnnouncement switching data (b₁ = bit 0).
au_information: boolAU information (b₂ = bit 1).
pvr_assist_information: boolPVR assist information (b₃ = bit 2).
Trait Implementations§
Source§impl Clone for AdaptationFieldDataFlags
impl Clone for AdaptationFieldDataFlags
Source§fn clone(&self) -> AdaptationFieldDataFlags
fn clone(&self) -> AdaptationFieldDataFlags
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AdaptationFieldDataFlags
Source§impl Debug for AdaptationFieldDataFlags
impl Debug for AdaptationFieldDataFlags
impl Eq for AdaptationFieldDataFlags
Source§impl PartialEq for AdaptationFieldDataFlags
impl PartialEq for AdaptationFieldDataFlags
Source§fn eq(&self, other: &AdaptationFieldDataFlags) -> bool
fn eq(&self, other: &AdaptationFieldDataFlags) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AdaptationFieldDataFlags
Auto Trait Implementations§
impl Freeze for AdaptationFieldDataFlags
impl RefUnwindSafe for AdaptationFieldDataFlags
impl Send for AdaptationFieldDataFlags
impl Sync for AdaptationFieldDataFlags
impl Unpin for AdaptationFieldDataFlags
impl UnsafeUnpin for AdaptationFieldDataFlags
impl UnwindSafe for AdaptationFieldDataFlags
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