pub struct PacketQueueInfo {
pub incoming_max_size_bytes: u64,
pub incoming_current_size_bytes: u64,
pub incoming_current_packet_count: u64,
pub outgoing_max_size_bytes: u64,
pub outgoing_current_size_bytes: u64,
pub outgoing_current_packet_count: u64,
}Fields§
§incoming_max_size_bytes: u64§incoming_current_size_bytes: u64§incoming_current_packet_count: u64§outgoing_max_size_bytes: u64§outgoing_current_size_bytes: u64§outgoing_current_packet_count: u64Trait Implementations§
Source§impl Clone for PacketQueueInfo
impl Clone for PacketQueueInfo
Source§fn clone(&self) -> PacketQueueInfo
fn clone(&self) -> PacketQueueInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PacketQueueInfo
impl RefUnwindSafe for PacketQueueInfo
impl Send for PacketQueueInfo
impl Sync for PacketQueueInfo
impl Unpin for PacketQueueInfo
impl UnsafeUnpin for PacketQueueInfo
impl UnwindSafe for PacketQueueInfo
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