pub struct StoredSizes {
pub changes: u64,
pub document: u64,
pub sync_states: u64,
}Expand description
Bytes stored for each of the stored types.
Fields§
§changes: u64Total bytes stored for all changes.
document: u64Total bytes stored in the document.
sync_states: u64Total bytes stored for all sync states.
Trait Implementations§
Source§impl Clone for StoredSizes
impl Clone for StoredSizes
Source§fn clone(&self) -> StoredSizes
fn clone(&self) -> StoredSizes
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 StoredSizes
impl Debug for StoredSizes
Source§impl Default for StoredSizes
impl Default for StoredSizes
Source§fn default() -> StoredSizes
fn default() -> StoredSizes
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StoredSizes
impl RefUnwindSafe for StoredSizes
impl Send for StoredSizes
impl Sync for StoredSizes
impl Unpin for StoredSizes
impl UnwindSafe for StoredSizes
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<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