pub struct IncomingPacket {
pub transaction_id: Option<u64>,
pub typ: IncomingPacketType,
pub payload: RingRange,
}
Expand description
An incoming packet.
Fields§
§transaction_id: Option<u64>
§typ: IncomingPacketType
§payload: RingRange
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IncomingPacket
impl RefUnwindSafe for IncomingPacket
impl Send for IncomingPacket
impl Sync for IncomingPacket
impl Unpin for IncomingPacket
impl UnwindSafe for IncomingPacket
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