pub struct OutgoingPacket<'a> {
pub transaction_id: u64,
pub size: usize,
pub typ: OutgoingPacketType<'a>,
}
Expand description
Information about an outgoing packet.
Fields§
§transaction_id: u64
§size: usize
§typ: OutgoingPacketType<'a>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for OutgoingPacket<'a>
impl<'a> RefUnwindSafe for OutgoingPacket<'a>
impl<'a> Send for OutgoingPacket<'a>
impl<'a> Sync for OutgoingPacket<'a>
impl<'a> Unpin for OutgoingPacket<'a>
impl<'a> UnwindSafe for OutgoingPacket<'a>
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