pub struct CpcmDeliverySignalling<'a> {
pub cpcm_version: u8,
pub selector_bytes: &'a [u8],
}Expand description
cpcm_delivery_signalling body (Table 2, §4.1.5): an encoding version plus the
version-dependent CPCM USI selector_bytes. For cpcm_version == 1 the
selector is the CPCM delivery signalling (USI) of ETSI TS 102 825-4; at the
descriptor level it is a version-tagged opaque payload.
Fields§
§cpcm_version: u8cpcm_version — encoding version of the USI structure in the selector bytes.
selector_bytes: &'a [u8]The selector_bytes (version-dependent CPCM USI payload; see TS 102 825-4).
Implementations§
Source§impl CpcmDeliverySignalling<'_>
impl CpcmDeliverySignalling<'_>
Trait Implementations§
Source§impl<'a> Clone for CpcmDeliverySignalling<'a>
impl<'a> Clone for CpcmDeliverySignalling<'a>
Source§fn clone(&self) -> CpcmDeliverySignalling<'a>
fn clone(&self) -> CpcmDeliverySignalling<'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 CpcmDeliverySignalling<'a>
impl<'a> Debug for CpcmDeliverySignalling<'a>
impl<'a> Eq for CpcmDeliverySignalling<'a>
Source§impl<'a> ExtensionBodyDef<'a> for CpcmDeliverySignalling<'a>
impl<'a> ExtensionBodyDef<'a> for CpcmDeliverySignalling<'a>
Source§impl<'a> Parse<'a> for CpcmDeliverySignalling<'a>
impl<'a> Parse<'a> for CpcmDeliverySignalling<'a>
Source§impl<'a> PartialEq for CpcmDeliverySignalling<'a>
impl<'a> PartialEq for CpcmDeliverySignalling<'a>
Source§fn eq(&self, other: &CpcmDeliverySignalling<'a>) -> bool
fn eq(&self, other: &CpcmDeliverySignalling<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for CpcmDeliverySignalling<'a>
impl<'a> Serialize for CpcmDeliverySignalling<'a>
Source§impl Serialize for CpcmDeliverySignalling<'_>
impl Serialize for CpcmDeliverySignalling<'_>
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 CpcmDeliverySignalling<'a>
Source§impl<'a> Yokeable<'a> for CpcmDeliverySignalling<'static>
impl<'a> Yokeable<'a> for CpcmDeliverySignalling<'static>
Source§type Output = CpcmDeliverySignalling<'a>
type Output = CpcmDeliverySignalling<'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 CpcmDeliverySignalling<'a>
impl<'a> RefUnwindSafe for CpcmDeliverySignalling<'a>
impl<'a> Send for CpcmDeliverySignalling<'a>
impl<'a> Sync for CpcmDeliverySignalling<'a>
impl<'a> Unpin for CpcmDeliverySignalling<'a>
impl<'a> UnsafeUnpin for CpcmDeliverySignalling<'a>
impl<'a> UnwindSafe for CpcmDeliverySignalling<'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