pub struct NotesSizeInfo {
pub total_bytes: u64,
pub note_count: usize,
pub by_measurement: Option<HashMap<String, MeasurementSizeInfo>>,
}Expand description
Information about measurement storage size
Fields§
§total_bytes: u64Total size in bytes
note_count: usizeNumber of commits with measurements
by_measurement: Option<HashMap<String, MeasurementSizeInfo>>Optional breakdown by measurement name
Auto Trait Implementations§
impl Freeze for NotesSizeInfo
impl RefUnwindSafe for NotesSizeInfo
impl Send for NotesSizeInfo
impl Sync for NotesSizeInfo
impl Unpin for NotesSizeInfo
impl UnwindSafe for NotesSizeInfo
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<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
Source§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
Source§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
Source§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more