pub struct PartitionSizeBucket {
pub size_start: u64,
pub size_end: u64,
pub count: u64,
pub cumulative_percentage: f64,
}Expand description
Partition size distribution bucket
Fields§
§size_start: u64Size range start (inclusive)
size_end: u64Size range end (exclusive)
count: u64Number of partitions in this bucket
cumulative_percentage: f64Cumulative percentage
Trait Implementations§
Source§impl Clone for PartitionSizeBucket
impl Clone for PartitionSizeBucket
Source§fn clone(&self) -> PartitionSizeBucket
fn clone(&self) -> PartitionSizeBucket
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 PartitionSizeBucket
impl Debug for PartitionSizeBucket
Source§impl<'de> Deserialize<'de> for PartitionSizeBucket
impl<'de> Deserialize<'de> for PartitionSizeBucket
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 PartitionSizeBucket
impl RefUnwindSafe for PartitionSizeBucket
impl Send for PartitionSizeBucket
impl Sync for PartitionSizeBucket
impl Unpin for PartitionSizeBucket
impl UnsafeUnpin for PartitionSizeBucket
impl UnwindSafe for PartitionSizeBucket
Blanket Implementations§
impl<T> Allocation for T
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