Struct apocalypse::HellStats
source · pub struct HellStats {
pub spawned_demons: usize,
pub active_demons: usize,
pub zombie_demons: usize,
pub successful_messages: usize,
pub failed_messages: usize,
pub ignition_time: DateTime<Utc>,
}Expand description
Basic statistics structure
Fields§
§spawned_demons: usizeAmount of spawned demons through the lifetime of this hell instance
active_demons: usizeAmount of active demons at the time of the call
zombie_demons: usizeZombie demons. That is, the instance still exists for whatever reason, but are no longer rechable
successful_messages: usizeTotal number of messages delivered to demons
failed_messages: usizeTotal number of messages whose deivery failed
ignition_time: DateTime<Utc>Time of ignition of the hell instance
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for HellStats
impl Send for HellStats
impl Sync for HellStats
impl Unpin for HellStats
impl UnwindSafe for HellStats
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