pub struct DashboardStats {
pub total: i64,
pub queued: i64,
pub processing: i64,
pub completed: i64,
pub failed: i64,
pub cleared: i64,
}Fields§
§total: i64§queued: i64§processing: i64§completed: i64§failed: i64§cleared: i64Trait Implementations§
Source§impl Clone for DashboardStats
impl Clone for DashboardStats
Source§fn clone(&self) -> DashboardStats
fn clone(&self) -> DashboardStats
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 DashboardStats
impl Debug for DashboardStats
Source§impl<'de> Deserialize<'de> for DashboardStats
impl<'de> Deserialize<'de> for DashboardStats
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
Source§impl PartialEq for DashboardStats
impl PartialEq for DashboardStats
Source§fn eq(&self, other: &DashboardStats) -> bool
fn eq(&self, other: &DashboardStats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DashboardStats
impl Serialize for DashboardStats
impl Eq for DashboardStats
impl StructuralPartialEq for DashboardStats
Auto Trait Implementations§
impl Freeze for DashboardStats
impl RefUnwindSafe for DashboardStats
impl Send for DashboardStats
impl Sync for DashboardStats
impl Unpin for DashboardStats
impl UnsafeUnpin for DashboardStats
impl UnwindSafe for DashboardStats
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