pub struct ColumnProfile {
pub name: String,
pub data_type: String,
pub null_count: u64,
pub non_null_count: u64,
pub distinct_count: Option<usize>,
pub min: Option<f64>,
pub max: Option<f64>,
}Expand description
Per-column summary produced while profiling a dataset.
Fields§
§name: StringColumn name as declared in the Arrow schema.
data_type: StringArrow data type rendered as a stable string.
null_count: u64Number of null values observed in the column.
non_null_count: u64Number of non-null values observed in the column.
distinct_count: Option<usize>Count of distinct canonical values seen in the column, when exact distinct is enabled.
min: Option<f64>Minimum numeric value, when the column parses as a number.
max: Option<f64>Maximum numeric value, when the column parses as a number.
Trait Implementations§
Source§impl Debug for ColumnProfile
impl Debug for ColumnProfile
Auto Trait Implementations§
impl Freeze for ColumnProfile
impl RefUnwindSafe for ColumnProfile
impl Send for ColumnProfile
impl Sync for ColumnProfile
impl Unpin for ColumnProfile
impl UnsafeUnpin for ColumnProfile
impl UnwindSafe for ColumnProfile
Blanket Implementations§
impl<T> Allocation for T
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