pub struct ApproximateMetrics {
pub estimated_unique_nodes: f64,
pub estimated_unique_edges: f64,
pub estimated_unique_triangles: f64,
pub active_nodes_bloom_fill_ratio: f64,
pub recent_edges_bloom_fill_ratio: f64,
}Expand description
Approximate metrics computed by the processor
Fields§
§estimated_unique_nodes: f64§estimated_unique_edges: f64§estimated_unique_triangles: f64§active_nodes_bloom_fill_ratio: f64§recent_edges_bloom_fill_ratio: f64Trait Implementations§
Source§impl Clone for ApproximateMetrics
impl Clone for ApproximateMetrics
Source§fn clone(&self) -> ApproximateMetrics
fn clone(&self) -> ApproximateMetrics
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ApproximateMetrics
impl RefUnwindSafe for ApproximateMetrics
impl Send for ApproximateMetrics
impl Sync for ApproximateMetrics
impl Unpin for ApproximateMetrics
impl UnwindSafe for ApproximateMetrics
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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