pub struct GaussianDistribution { /* private fields */ }๐Deprecated since 54.0.0:
Part of the unused Statistics V2 framework; see https://github.com/apache/datafusion/pull/22071
Expand description
Gaussian (normal) distribution, represented by its mean and variance. For a more in-depth discussion, see:
Implementationsยง
Trait Implementationsยง
Sourceยงimpl Clone for GaussianDistribution
impl Clone for GaussianDistribution
Sourceยงfn clone(&self) -> GaussianDistribution
fn clone(&self) -> GaussianDistribution
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 GaussianDistribution
impl Debug for GaussianDistribution
Sourceยงimpl PartialEq for GaussianDistribution
impl PartialEq for GaussianDistribution
Sourceยงfn eq(&self, other: &GaussianDistribution) -> bool
fn eq(&self, other: &GaussianDistribution) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GaussianDistribution
Auto Trait Implementationsยง
impl !RefUnwindSafe for GaussianDistribution
impl !UnwindSafe for GaussianDistribution
impl Freeze for GaussianDistribution
impl Send for GaussianDistribution
impl Sync for GaussianDistribution
impl Unpin for GaussianDistribution
impl UnsafeUnpin for GaussianDistribution
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,
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