pub struct FefNullPayload {
pub fef_idx: u8,
pub s1_field: S1Field,
pub s2_field: u8,
}Expand description
FEF part: Null payload (type 0x30) per ETSI TS 102 773 §5.2.9.
Fields§
§fef_idx: u8FEF index within super-frame.
s1_field: S1FieldS1 field per EN 302 755 §7.2.1.
s2_field: u8S2 field per EN 302 755 §7.2.1.
Trait Implementations§
Source§impl Clone for FefNullPayload
impl Clone for FefNullPayload
Source§fn clone(&self) -> FefNullPayload
fn clone(&self) -> FefNullPayload
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 Debug for FefNullPayload
impl Debug for FefNullPayload
Source§impl Display for FefNullPayload
impl Display for FefNullPayload
impl Eq for FefNullPayload
Source§impl<'a> From<FefNullPayload> for AnyPayload<'a>
impl<'a> From<FefNullPayload> for AnyPayload<'a>
Source§fn from(p: FefNullPayload) -> Self
fn from(p: FefNullPayload) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for FefNullPayload
impl<'a> Parse<'a> for FefNullPayload
Source§impl PartialEq for FefNullPayload
impl PartialEq for FefNullPayload
Source§fn eq(&self, other: &FefNullPayload) -> bool
fn eq(&self, other: &FefNullPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> PayloadDef<'a> for FefNullPayload
impl<'a> PayloadDef<'a> for FefNullPayload
Source§impl Serialize for FefNullPayload
impl Serialize for FefNullPayload
Source§impl Serialize for FefNullPayload
impl Serialize for FefNullPayload
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 StructuralPartialEq for FefNullPayload
Auto Trait Implementations§
impl Freeze for FefNullPayload
impl RefUnwindSafe for FefNullPayload
impl Send for FefNullPayload
impl Sync for FefNullPayload
impl Unpin for FefNullPayload
impl UnsafeUnpin for FefNullPayload
impl UnwindSafe for FefNullPayload
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