pub struct FlowControlStats {
pub receive_maximum: u16,
pub in_flight_count: usize,
pub available_quota: usize,
pub pending_requests: usize,
pub oldest_in_flight: Option<Instant>,
}Fields§
§receive_maximum: u16§in_flight_count: usize§available_quota: usize§pending_requests: usize§oldest_in_flight: Option<Instant>Trait Implementations§
Source§impl Clone for FlowControlStats
impl Clone for FlowControlStats
Source§fn clone(&self) -> FlowControlStats
fn clone(&self) -> FlowControlStats
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 FlowControlStats
impl RefUnwindSafe for FlowControlStats
impl Send for FlowControlStats
impl Sync for FlowControlStats
impl Unpin for FlowControlStats
impl UnwindSafe for FlowControlStats
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