pub struct EngineMetrics {
pub queued: u64,
pub in_flight: u64,
pub completed: u64,
pub rejected_backpressure: u64,
}Fields§
§queued: u64§in_flight: u64§completed: u64§rejected_backpressure: u64Trait Implementations§
Source§impl Clone for EngineMetrics
impl Clone for EngineMetrics
Source§fn clone(&self) -> EngineMetrics
fn clone(&self) -> EngineMetrics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for EngineMetrics
impl Default for EngineMetrics
Source§fn default() -> EngineMetrics
fn default() -> EngineMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EngineMetrics
impl RefUnwindSafe for EngineMetrics
impl Send for EngineMetrics
impl Sync for EngineMetrics
impl Unpin for EngineMetrics
impl UnsafeUnpin for EngineMetrics
impl UnwindSafe for EngineMetrics
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