pub struct RoutePayload {
pub route_id: PayloadRouteId,
pub channel_id: ChannelId,
pub packet_seq: u64,
pub data: Vec<u8>,
}Expand description
Recovered WFB payload bytes copied for an application route.
Fields§
§route_id: PayloadRouteIdApplication-defined route id that requested this payload tap.
channel_id: ChannelIdWFB channel id that carried the payload.
packet_seq: u64Recovered WFB packet sequence number.
data: Vec<u8>Raw recovered payload bytes.
Trait Implementations§
Source§impl Clone for RoutePayload
impl Clone for RoutePayload
Source§fn clone(&self) -> RoutePayload
fn clone(&self) -> RoutePayload
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 RoutePayload
impl Debug for RoutePayload
impl Eq for RoutePayload
Source§impl PartialEq for RoutePayload
impl PartialEq for RoutePayload
Source§fn eq(&self, other: &RoutePayload) -> bool
fn eq(&self, other: &RoutePayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RoutePayload
Auto Trait Implementations§
impl Freeze for RoutePayload
impl RefUnwindSafe for RoutePayload
impl Send for RoutePayload
impl Sync for RoutePayload
impl Unpin for RoutePayload
impl UnsafeUnpin for RoutePayload
impl UnwindSafe for RoutePayload
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