pub struct FieldStats {
pub path: String,
pub occurrences: u64,
pub total_samples: u64,
pub density: f64,
pub null_count: u64,
pub types: HashMap<JsonType, u64>,
pub examples: Vec<Value>,
pub depth: usize,
}Fields§
§path: String§occurrences: u64§total_samples: u64§density: f64§null_count: u64§types: HashMap<JsonType, u64>§examples: Vec<Value>§depth: usizeImplementations§
Trait Implementations§
Source§impl Clone for FieldStats
impl Clone for FieldStats
Source§fn clone(&self) -> FieldStats
fn clone(&self) -> FieldStats
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 FieldStats
impl Debug for FieldStats
Auto Trait Implementations§
impl Freeze for FieldStats
impl RefUnwindSafe for FieldStats
impl Send for FieldStats
impl Sync for FieldStats
impl Unpin for FieldStats
impl UnsafeUnpin for FieldStats
impl UnwindSafe for FieldStats
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