pub struct DriveChart {
pub total_count: Vec<u64>,
pub total_size: Vec<u64>,
pub inc_count: Vec<u64>,
pub inc_size: Vec<u64>,
pub dec_count: Vec<u64>,
pub dec_size: Vec<u64>,
}Fields§
§total_count: Vec<u64>§total_size: Vec<u64>§inc_count: Vec<u64>§inc_size: Vec<u64>§dec_count: Vec<u64>§dec_size: Vec<u64>Trait Implementations§
Source§impl Clone for DriveChart
impl Clone for DriveChart
Source§fn clone(&self) -> DriveChart
fn clone(&self) -> DriveChart
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 DriveChart
impl Debug for DriveChart
Source§impl<'de> Deserialize<'de> for DriveChart
impl<'de> Deserialize<'de> for DriveChart
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DriveChart
impl RefUnwindSafe for DriveChart
impl Send for DriveChart
impl Sync for DriveChart
impl Unpin for DriveChart
impl UnwindSafe for DriveChart
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