pub struct ResourceManagerStats {
pub backpressure: f32,
pub active_clients: usize,
pub queue_depth: usize,
pub total_in_flight: usize,
pub total_memory: usize,
pub module_count: usize,
}Expand description
Statistics about resource manager state.
Fields§
§backpressure: f32§active_clients: usize§queue_depth: usize§total_in_flight: usize§total_memory: usize§module_count: usizeTrait Implementations§
Source§impl Clone for ResourceManagerStats
impl Clone for ResourceManagerStats
Source§fn clone(&self) -> ResourceManagerStats
fn clone(&self) -> ResourceManagerStats
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 ResourceManagerStats
impl RefUnwindSafe for ResourceManagerStats
impl Send for ResourceManagerStats
impl Sync for ResourceManagerStats
impl Unpin for ResourceManagerStats
impl UnsafeUnpin for ResourceManagerStats
impl UnwindSafe for ResourceManagerStats
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