pub struct TenantInboxCounts {
pub total: i64,
pub approval: i64,
pub input: i64,
pub paused: i64,
pub failed: i64,
}Expand description
Counted over the whole scan, NOT over items — so limit truncating the list does not move
them. The SCAN is capped too, though, and that cap they cannot see past: when truncated is
true these are a floor, not a total.
Fields§
§total: i64§approval: i64§input: i64§paused: i64§failed: i64Trait Implementations§
Source§impl Clone for TenantInboxCounts
impl Clone for TenantInboxCounts
Source§fn clone(&self) -> TenantInboxCounts
fn clone(&self) -> TenantInboxCounts
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 TenantInboxCounts
impl Debug for TenantInboxCounts
Source§impl Default for TenantInboxCounts
impl Default for TenantInboxCounts
Source§fn default() -> TenantInboxCounts
fn default() -> TenantInboxCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TenantInboxCounts
impl<'de> Deserialize<'de> for TenantInboxCounts
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 TenantInboxCounts
impl PartialEq for TenantInboxCounts
Source§impl Serialize for TenantInboxCounts
impl Serialize for TenantInboxCounts
impl StructuralPartialEq for TenantInboxCounts
Auto Trait Implementations§
impl Freeze for TenantInboxCounts
impl RefUnwindSafe for TenantInboxCounts
impl Send for TenantInboxCounts
impl Sync for TenantInboxCounts
impl Unpin for TenantInboxCounts
impl UnsafeUnpin for TenantInboxCounts
impl UnwindSafe for TenantInboxCounts
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