pub struct DropReqPacket {
pub message_number: u32,
pub timestamp: u32,
pub dest_socket_id: u32,
pub first_seq: u32,
pub last_seq: u32,
}Expand description
Message Drop Request control packet (§3.2.9, Figure 18).
Fields§
§message_number: u32The message number requested to be dropped (0 if the sender no
longer has the packets and cannot restore it).
timestamp: u32Timestamp (§3).
dest_socket_id: u32Destination Socket ID (§3).
first_seq: u32First Packet Sequence Number of the range to drop.
last_seq: u32Last Packet Sequence Number of the range to drop.
Trait Implementations§
Source§impl Clone for DropReqPacket
impl Clone for DropReqPacket
Source§fn clone(&self) -> DropReqPacket
fn clone(&self) -> DropReqPacket
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 moreimpl Copy for DropReqPacket
Source§impl Debug for DropReqPacket
impl Debug for DropReqPacket
impl Eq for DropReqPacket
Source§impl Hash for DropReqPacket
impl Hash for DropReqPacket
Source§impl PartialEq for DropReqPacket
impl PartialEq for DropReqPacket
Source§impl Serialize for DropReqPacket
Available on crate feature serde only.
impl Serialize for DropReqPacket
Available on crate feature
serde only.impl StructuralPartialEq for DropReqPacket
Auto Trait Implementations§
impl Freeze for DropReqPacket
impl RefUnwindSafe for DropReqPacket
impl Send for DropReqPacket
impl Sync for DropReqPacket
impl Unpin for DropReqPacket
impl UnsafeUnpin for DropReqPacket
impl UnwindSafe for DropReqPacket
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