#[non_exhaustive]pub struct UtilizationChartData {
pub used: i64,
pub free: i64,
/* private fields */
}Expand description
Utilization Chart is a specific type of visualization which displays a metric classified into “Used” and “Free” buckets.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.used: i64Aggregate value which falls into the “Used” bucket.
free: i64Aggregate value which falls into the “Free” bucket.
Implementations§
Trait Implementations§
Source§impl Clone for UtilizationChartData
impl Clone for UtilizationChartData
Source§fn clone(&self) -> UtilizationChartData
fn clone(&self) -> UtilizationChartData
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 UtilizationChartData
impl Debug for UtilizationChartData
Source§impl Default for UtilizationChartData
impl Default for UtilizationChartData
Source§fn default() -> UtilizationChartData
fn default() -> UtilizationChartData
Returns the “default value” for a type. Read more
Source§impl Message for UtilizationChartData
impl Message for UtilizationChartData
Source§impl PartialEq for UtilizationChartData
impl PartialEq for UtilizationChartData
impl StructuralPartialEq for UtilizationChartData
Auto Trait Implementations§
impl Freeze for UtilizationChartData
impl RefUnwindSafe for UtilizationChartData
impl Send for UtilizationChartData
impl Sync for UtilizationChartData
impl Unpin for UtilizationChartData
impl UnsafeUnpin for UtilizationChartData
impl UnwindSafe for UtilizationChartData
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