pub struct ServiceProminence<'a> {
pub sogi_list: Vec<SogiEntry>,
pub private_data: &'a [u8],
}Expand description
service_prominence body (Table 162c). The SOGI loop is unfolded;
each entry’s target_region loop uses the typed
TargetRegionEntry/RegionCodes from target_region.rs
(Table 156, same shape as target_region_descriptor).
Fields§
§sogi_list: Vec<SogiEntry>SOGI entries (the SOGI_list_length-delimited loop).
private_data: &'a [u8]Trailing private_data_byte run.
Trait Implementations§
Source§impl<'a> Clone for ServiceProminence<'a>
impl<'a> Clone for ServiceProminence<'a>
Source§fn clone(&self) -> ServiceProminence<'a>
fn clone(&self) -> ServiceProminence<'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 ServiceProminence<'a>
impl<'a> Debug for ServiceProminence<'a>
impl<'a> Eq for ServiceProminence<'a>
Source§impl<'a> ExtensionBodyDef<'a> for ServiceProminence<'a>
impl<'a> ExtensionBodyDef<'a> for ServiceProminence<'a>
Source§impl<'a> Parse<'a> for ServiceProminence<'a>
impl<'a> Parse<'a> for ServiceProminence<'a>
Source§impl<'a> PartialEq for ServiceProminence<'a>
impl<'a> PartialEq for ServiceProminence<'a>
Source§fn eq(&self, other: &ServiceProminence<'a>) -> bool
fn eq(&self, other: &ServiceProminence<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for ServiceProminence<'a>
impl<'a> Serialize for ServiceProminence<'a>
Source§impl Serialize for ServiceProminence<'_>
impl Serialize for ServiceProminence<'_>
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 ServiceProminence<'a>
Source§impl<'a> Yokeable<'a> for ServiceProminence<'static>
impl<'a> Yokeable<'a> for ServiceProminence<'static>
Source§type Output = ServiceProminence<'a>
type Output = ServiceProminence<'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 ServiceProminence<'a>
impl<'a> RefUnwindSafe for ServiceProminence<'a>
impl<'a> Send for ServiceProminence<'a>
impl<'a> Sync for ServiceProminence<'a>
impl<'a> Unpin for ServiceProminence<'a>
impl<'a> UnsafeUnpin for ServiceProminence<'a>
impl<'a> UnwindSafe for ServiceProminence<'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