pub struct InflightSnapshot {
pub max: usize,
pub available: usize,
pub in_use: usize,
}Fields§
§max: usize§available: usize§in_use: usizeTrait Implementations§
Source§impl Clone for InflightSnapshot
impl Clone for InflightSnapshot
Source§fn clone(&self) -> InflightSnapshot
fn clone(&self) -> InflightSnapshot
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 InflightSnapshot
impl RefUnwindSafe for InflightSnapshot
impl Send for InflightSnapshot
impl Sync for InflightSnapshot
impl Unpin for InflightSnapshot
impl UnwindSafe for InflightSnapshot
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