pub struct ShapingStats {
pub packets_shaped: u64,
pub dummy_packets_sent: u64,
pub bytes_padded: u64,
pub avg_queue_delay_ms: f64,
}Expand description
Shaping statistics
Fields§
§packets_shaped: u64§dummy_packets_sent: u64§bytes_padded: u64§avg_queue_delay_ms: f64Trait Implementations§
Source§impl Clone for ShapingStats
impl Clone for ShapingStats
Source§fn clone(&self) -> ShapingStats
fn clone(&self) -> ShapingStats
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 moreSource§impl Debug for ShapingStats
impl Debug for ShapingStats
Source§impl Default for ShapingStats
impl Default for ShapingStats
Source§fn default() -> ShapingStats
fn default() -> ShapingStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ShapingStats
impl RefUnwindSafe for ShapingStats
impl Send for ShapingStats
impl Sync for ShapingStats
impl Unpin for ShapingStats
impl UnsafeUnpin for ShapingStats
impl UnwindSafe for ShapingStats
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