pub struct HostMetrics {
pub loaded_plugins: usize,
pub pending_requests: usize,
pub state_sessions: usize,
pub in_flight_calls: usize,
}Expand description
Point-in-time host metrics suitable for application monitoring hooks.
Fields§
§loaded_plugins: usize§pending_requests: usize§state_sessions: usize§in_flight_calls: usizeTrait Implementations§
Source§impl Clone for HostMetrics
impl Clone for HostMetrics
Source§fn clone(&self) -> HostMetrics
fn clone(&self) -> HostMetrics
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 moreimpl Copy for HostMetrics
Source§impl Debug for HostMetrics
impl Debug for HostMetrics
impl Eq for HostMetrics
Source§impl PartialEq for HostMetrics
impl PartialEq for HostMetrics
impl StructuralPartialEq for HostMetrics
Auto Trait Implementations§
impl Freeze for HostMetrics
impl RefUnwindSafe for HostMetrics
impl Send for HostMetrics
impl Sync for HostMetrics
impl Unpin for HostMetrics
impl UnsafeUnpin for HostMetrics
impl UnwindSafe for HostMetrics
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