pub struct EngineStatistics {
pub total_projections: usize,
pub active_projections: usize,
pub total_events_processed: u64,
pub uptime_seconds: u64,
pub storage_size_bytes: u64,
}Expand description
Engine statistics
Fields§
§total_projections: usize§active_projections: usize§total_events_processed: u64§uptime_seconds: u64§storage_size_bytes: u64Trait Implementations§
Source§impl Clone for EngineStatistics
impl Clone for EngineStatistics
Source§fn clone(&self) -> EngineStatistics
fn clone(&self) -> EngineStatistics
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 Debug for EngineStatistics
impl Debug for EngineStatistics
Source§impl<'de> Deserialize<'de> for EngineStatistics
impl<'de> Deserialize<'de> for EngineStatistics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EngineStatistics
impl RefUnwindSafe for EngineStatistics
impl Send for EngineStatistics
impl Sync for EngineStatistics
impl Unpin for EngineStatistics
impl UnsafeUnpin for EngineStatistics
impl UnwindSafe for EngineStatistics
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