pub struct MetricsTree_Blocks_Size {
pub cumulative: MetricPattern1<StoredU64>,
pub average: MetricPattern2<StoredU64>,
pub min: MetricPattern2<StoredU64>,
pub max: MetricPattern2<StoredU64>,
pub pct10: MetricPattern6<StoredU64>,
pub pct25: MetricPattern6<StoredU64>,
pub median: MetricPattern6<StoredU64>,
pub pct75: MetricPattern6<StoredU64>,
pub pct90: MetricPattern6<StoredU64>,
pub sum: MetricPattern2<StoredU64>,
}Expand description
Metrics tree node.
Fields§
§cumulative: MetricPattern1<StoredU64>§average: MetricPattern2<StoredU64>§min: MetricPattern2<StoredU64>§max: MetricPattern2<StoredU64>§pct10: MetricPattern6<StoredU64>§pct25: MetricPattern6<StoredU64>§median: MetricPattern6<StoredU64>§pct75: MetricPattern6<StoredU64>§pct90: MetricPattern6<StoredU64>§sum: MetricPattern2<StoredU64>Implementations§
Source§impl MetricsTree_Blocks_Size
impl MetricsTree_Blocks_Size
pub fn new(client: Arc<BrkClientBase>, base_path: String) -> Self
Auto Trait Implementations§
impl Freeze for MetricsTree_Blocks_Size
impl RefUnwindSafe for MetricsTree_Blocks_Size
impl Send for MetricsTree_Blocks_Size
impl Sync for MetricsTree_Blocks_Size
impl Unpin for MetricsTree_Blocks_Size
impl UnwindSafe for MetricsTree_Blocks_Size
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more