pub struct RateWindowBps {
pub lambda_in: u32,
pub lambda_out: u32,
pub mu_in: u32,
pub mu_out: u32,
}Expand description
Sliding-window throughput rates (bytes/sec).
Fields§
§lambda_in: u32Arrival rate into input queue.
lambda_out: u32Arrival rate into output queue.
mu_in: u32Service rate for PTY writes.
mu_out: u32Service rate for websocket output.
Trait Implementations§
Source§impl Clone for RateWindowBps
impl Clone for RateWindowBps
Source§fn clone(&self) -> RateWindowBps
fn clone(&self) -> RateWindowBps
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 RateWindowBps
impl Debug for RateWindowBps
Source§impl PartialEq for RateWindowBps
impl PartialEq for RateWindowBps
impl Copy for RateWindowBps
impl Eq for RateWindowBps
impl StructuralPartialEq for RateWindowBps
Auto Trait Implementations§
impl Freeze for RateWindowBps
impl RefUnwindSafe for RateWindowBps
impl Send for RateWindowBps
impl Sync for RateWindowBps
impl Unpin for RateWindowBps
impl UnwindSafe for RateWindowBps
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