pub struct StoreRecordCounts {Show 20 fields
pub accounts: u32,
pub labels: u32,
pub messages: u32,
pub unread_messages: u32,
pub starred_messages: u32,
pub messages_with_attachments: u32,
pub message_labels: u32,
pub bodies: u32,
pub attachments: u32,
pub drafts: u32,
pub snoozed: u32,
pub saved_searches: u32,
pub rules: u32,
pub rule_logs: u32,
pub sync_log: u32,
pub sync_runtime_statuses: u32,
pub event_log: u32,
pub semantic_profiles: u32,
pub semantic_chunks: u32,
pub semantic_embeddings: u32,
}Fields§
§accounts: u32§labels: u32§messages: u32§unread_messages: u32§starred_messages: u32§messages_with_attachments: u32§message_labels: u32§bodies: u32§attachments: u32§drafts: u32§snoozed: u32§saved_searches: u32§rules: u32§rule_logs: u32§sync_log: u32§sync_runtime_statuses: u32§event_log: u32§semantic_profiles: u32§semantic_chunks: u32§semantic_embeddings: u32Trait Implementations§
Source§impl Clone for StoreRecordCounts
impl Clone for StoreRecordCounts
Source§fn clone(&self) -> StoreRecordCounts
fn clone(&self) -> StoreRecordCounts
Returns a duplicate of the value. Read more
1.0.0 · 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 StoreRecordCounts
impl Debug for StoreRecordCounts
Source§impl Default for StoreRecordCounts
impl Default for StoreRecordCounts
Source§fn default() -> StoreRecordCounts
fn default() -> StoreRecordCounts
Returns the “default value” for a type. Read more
Source§impl PartialEq for StoreRecordCounts
impl PartialEq for StoreRecordCounts
impl Eq for StoreRecordCounts
impl StructuralPartialEq for StoreRecordCounts
Auto Trait Implementations§
impl Freeze for StoreRecordCounts
impl RefUnwindSafe for StoreRecordCounts
impl Send for StoreRecordCounts
impl Sync for StoreRecordCounts
impl Unpin for StoreRecordCounts
impl UnsafeUnpin for StoreRecordCounts
impl UnwindSafe for StoreRecordCounts
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more