pub struct RecoveredPayload {
pub channel_id: ChannelId,
pub packet_seq: u64,
pub data: Vec<u8>,
}Expand description
Payload recovered from one OpenIPC/WFB channel.
Fields§
§channel_id: ChannelIdWFB channel that produced this payload.
packet_seq: u64Recovered WFB packet sequence number.
data: Vec<u8>Raw application payload bytes.
Trait Implementations§
Source§impl Clone for RecoveredPayload
impl Clone for RecoveredPayload
Source§fn clone(&self) -> RecoveredPayload
fn clone(&self) -> RecoveredPayload
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 RecoveredPayload
impl Debug for RecoveredPayload
impl Eq for RecoveredPayload
Source§impl PartialEq for RecoveredPayload
impl PartialEq for RecoveredPayload
Source§fn eq(&self, other: &RecoveredPayload) -> bool
fn eq(&self, other: &RecoveredPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecoveredPayload
Auto Trait Implementations§
impl Freeze for RecoveredPayload
impl RefUnwindSafe for RecoveredPayload
impl Send for RecoveredPayload
impl Sync for RecoveredPayload
impl Unpin for RecoveredPayload
impl UnsafeUnpin for RecoveredPayload
impl UnwindSafe for RecoveredPayload
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