pub struct RntSection<'a> {
pub context_id: u16,
pub version_number: u8,
pub current_next_indicator: bool,
pub section_number: u8,
pub last_section_number: u8,
pub context_id_type: ContextIdType,
pub common_descriptors: DescriptorLoop<'a>,
pub resolution_providers: Vec<ResolutionProvider<'a>>,
}Expand description
Resolution provider Notification Table (ETSI TS 102 323 v1.4.1 §5.2.2, Table 1).
The resolution-provider loop is unfolded into typed
ResolutionProvider entries.
Fields§
§context_id: u1616-bit context identifier (table_id_extension).
version_number: u85-bit version_number.
current_next_indicator: boolcurrent_next_indicator bit.
section_number: u8section_number in the sub-table sequence.
last_section_number: u8last_section_number in the sub-table sequence.
context_id_type: ContextIdTypecontext_id_type byte (Table 2).
common_descriptors: DescriptorLoop<'a>Common descriptor loop. Serializes as the typed descriptor sequence;
.raw() yields the wire bytes.
resolution_providers: Vec<ResolutionProvider<'a>>Resolution-provider entries — unfolded per Table 1.
Trait Implementations§
Source§impl<'a> Clone for RntSection<'a>
impl<'a> Clone for RntSection<'a>
Source§fn clone(&self) -> RntSection<'a>
fn clone(&self) -> RntSection<'a>
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 moreSource§impl<'a> Debug for RntSection<'a>
impl<'a> Debug for RntSection<'a>
impl<'a> Eq for RntSection<'a>
Source§impl<'a> From<RntSection<'a>> for AnyTableSection<'a>
impl<'a> From<RntSection<'a>> for AnyTableSection<'a>
Source§fn from(t: RntSection<'a>) -> Self
fn from(t: RntSection<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for RntSection<'a>
impl<'a> Parse<'a> for RntSection<'a>
Source§impl<'a> PartialEq for RntSection<'a>
impl<'a> PartialEq for RntSection<'a>
Source§fn eq(&self, other: &RntSection<'a>) -> bool
fn eq(&self, other: &RntSection<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for RntSection<'a>
impl<'a> Serialize for RntSection<'a>
Source§impl Serialize for RntSection<'_>
impl Serialize for RntSection<'_>
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl<'a> StructuralPartialEq for RntSection<'a>
Source§impl<'a> TableDef<'a> for RntSection<'a>
impl<'a> TableDef<'a> for RntSection<'a>
Source§impl<'a> Yokeable<'a> for RntSection<'static>
impl<'a> Yokeable<'a> for RntSection<'static>
Source§type Output = RntSection<'a>
type Output = RntSection<'a>
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Auto Trait Implementations§
impl<'a> Freeze for RntSection<'a>
impl<'a> RefUnwindSafe for RntSection<'a>
impl<'a> Send for RntSection<'a>
impl<'a> Sync for RntSection<'a>
impl<'a> Unpin for RntSection<'a>
impl<'a> UnsafeUnpin for RntSection<'a>
impl<'a> UnwindSafe for RntSection<'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