pub struct OutlierReport {
pub column: String,
pub sampling: SamplingMode,
pub row_count: usize,
pub outlier_count: usize,
pub stats: OutlierStats,
pub examples: Vec<f64>,
}Fields§
§column: String§sampling: SamplingMode§row_count: usize§outlier_count: usize§stats: OutlierStats§examples: Vec<f64>Trait Implementations§
Source§impl Clone for OutlierReport
impl Clone for OutlierReport
Source§fn clone(&self) -> OutlierReport
fn clone(&self) -> OutlierReport
Returns a duplicate of the value. Read more
1.0.0 · 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 OutlierReport
impl Debug for OutlierReport
Source§impl PartialEq for OutlierReport
impl PartialEq for OutlierReport
impl StructuralPartialEq for OutlierReport
Auto Trait Implementations§
impl Freeze for OutlierReport
impl RefUnwindSafe for OutlierReport
impl Send for OutlierReport
impl Sync for OutlierReport
impl Unpin for OutlierReport
impl UnwindSafe for OutlierReport
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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