pub struct PimdirObjectStats {
pub count: u64,
pub bytes: u64,
}Available on crate feature
client only.Expand description
How many objects the index holds and what they weigh.
Fields§
§count: u64Indexed objects.
bytes: u64Their total size in bytes.
Trait Implementations§
Source§impl Clone for PimdirObjectStats
impl Clone for PimdirObjectStats
Source§fn clone(&self) -> PimdirObjectStats
fn clone(&self) -> PimdirObjectStats
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 moreimpl Copy for PimdirObjectStats
Source§impl Debug for PimdirObjectStats
impl Debug for PimdirObjectStats
Source§impl Default for PimdirObjectStats
impl Default for PimdirObjectStats
Source§fn default() -> PimdirObjectStats
fn default() -> PimdirObjectStats
Returns the “default value” for a type. Read more
impl Eq for PimdirObjectStats
Source§impl PartialEq for PimdirObjectStats
impl PartialEq for PimdirObjectStats
Source§impl Serialize for PimdirObjectStats
impl Serialize for PimdirObjectStats
impl StructuralPartialEq for PimdirObjectStats
Auto Trait Implementations§
impl Freeze for PimdirObjectStats
impl RefUnwindSafe for PimdirObjectStats
impl Send for PimdirObjectStats
impl Sync for PimdirObjectStats
impl Unpin for PimdirObjectStats
impl UnsafeUnpin for PimdirObjectStats
impl UnwindSafe for PimdirObjectStats
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