pub struct DirectoryUsage {
pub entry_count: usize,
pub metadata_pair_count: usize,
pub is_split: bool,
pub append_bytes_used: usize,
pub append_bytes_remaining: usize,
}Fields§
§entry_count: usize§metadata_pair_count: usize§is_split: bool§append_bytes_used: usize§append_bytes_remaining: usizeTrait Implementations§
Source§impl Clone for DirectoryUsage
impl Clone for DirectoryUsage
Source§fn clone(&self) -> DirectoryUsage
fn clone(&self) -> DirectoryUsage
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 DirectoryUsage
impl Debug for DirectoryUsage
Source§impl PartialEq for DirectoryUsage
impl PartialEq for DirectoryUsage
Source§fn eq(&self, other: &DirectoryUsage) -> bool
fn eq(&self, other: &DirectoryUsage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DirectoryUsage
impl StructuralPartialEq for DirectoryUsage
Auto Trait Implementations§
impl Freeze for DirectoryUsage
impl RefUnwindSafe for DirectoryUsage
impl Send for DirectoryUsage
impl Sync for DirectoryUsage
impl Unpin for DirectoryUsage
impl UnsafeUnpin for DirectoryUsage
impl UnwindSafe for DirectoryUsage
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