#[non_exhaustive]pub struct InternalStats {
pub nodes: usize,
pub rejected_nodes: u64,
pub dropped_samples: u64,
}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.nodes: usize§rejected_nodes: u64§dropped_samples: u64Trait Implementations§
Source§impl Clone for InternalStats
impl Clone for InternalStats
Source§fn clone(&self) -> InternalStats
fn clone(&self) -> InternalStats
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 moreimpl Copy for InternalStats
Source§impl Debug for InternalStats
impl Debug for InternalStats
Source§impl Default for InternalStats
impl Default for InternalStats
Source§fn default() -> InternalStats
fn default() -> InternalStats
Returns the “default value” for a type. Read more
impl Eq for InternalStats
Source§impl PartialEq for InternalStats
impl PartialEq for InternalStats
Source§impl Serialize for InternalStats
impl Serialize for InternalStats
impl StructuralPartialEq for InternalStats
Auto Trait Implementations§
impl Freeze for InternalStats
impl RefUnwindSafe for InternalStats
impl Send for InternalStats
impl Sync for InternalStats
impl Unpin for InternalStats
impl UnsafeUnpin for InternalStats
impl UnwindSafe for InternalStats
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