#[non_exhaustive]pub struct PacketWithMetadata {
pub packet: Packet,
pub metadata: ReceiveMetadata,
}Expand description
A received packet together with richer receive metadata.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.packet: PacketThe packet payload and core addressing information.
metadata: ReceiveMetadataAdditional receive context supplied by the platform layer.
Implementations§
Source§impl PacketWithMetadata
impl PacketWithMetadata
Sourcepub fn metadata(&self) -> &ReceiveMetadata
pub fn metadata(&self) -> &ReceiveMetadata
Returns a read-only reference to the receive metadata.
Sourcepub fn into_packet(self) -> Packet
pub fn into_packet(self) -> Packet
Discards the richer metadata and returns the inner packet.
Trait Implementations§
Source§impl Clone for PacketWithMetadata
impl Clone for PacketWithMetadata
Source§fn clone(&self) -> PacketWithMetadata
fn clone(&self) -> PacketWithMetadata
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 moreAuto Trait Implementations§
impl !Freeze for PacketWithMetadata
impl RefUnwindSafe for PacketWithMetadata
impl Send for PacketWithMetadata
impl Sync for PacketWithMetadata
impl Unpin for PacketWithMetadata
impl UnsafeUnpin for PacketWithMetadata
impl UnwindSafe for PacketWithMetadata
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