pub struct DiscoveryStats {
pub events_mined: u64,
pub shapes: usize,
pub clusters: usize,
pub candidates: usize,
}Expand description
Summary counters for a discovery run.
Fields§
§events_mined: u64Events fed into mining (offline: unknown/generic_json only; online: the sum of sampled shape counts).
shapes: usizeDistinct field-key shapes seen.
clusters: usizeClusters formed.
candidates: usizeCandidates emitted (after min_support and max_candidates).
Trait Implementations§
Source§impl Clone for DiscoveryStats
impl Clone for DiscoveryStats
Source§fn clone(&self) -> DiscoveryStats
fn clone(&self) -> DiscoveryStats
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 DiscoveryStats
impl Debug for DiscoveryStats
Source§impl Default for DiscoveryStats
impl Default for DiscoveryStats
Source§fn default() -> DiscoveryStats
fn default() -> DiscoveryStats
Returns the “default value” for a type. Read more
impl Eq for DiscoveryStats
Source§impl PartialEq for DiscoveryStats
impl PartialEq for DiscoveryStats
impl StructuralPartialEq for DiscoveryStats
Auto Trait Implementations§
impl Freeze for DiscoveryStats
impl RefUnwindSafe for DiscoveryStats
impl Send for DiscoveryStats
impl Sync for DiscoveryStats
impl Unpin for DiscoveryStats
impl UnsafeUnpin for DiscoveryStats
impl UnwindSafe for DiscoveryStats
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.