pub struct MatrixStatsFields {
pub skewness: f64,
pub name: String,
pub correlation: Value,
pub count: f64,
pub variance: f64,
pub kurtosis: f64,
pub mean: f64,
pub covariance: Value,
}Fields§
§skewness: f64§name: StringThe path to a field or an array of paths. Some APIs support wildcards in the path, which allows you to select multiple fields.
correlation: Value§count: f64§variance: f64§kurtosis: f64§mean: f64§covariance: ValueImplementations§
Trait Implementations§
Source§impl Clone for MatrixStatsFields
impl Clone for MatrixStatsFields
Source§fn clone(&self) -> MatrixStatsFields
fn clone(&self) -> MatrixStatsFields
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 MatrixStatsFields
impl Debug for MatrixStatsFields
Source§impl Default for MatrixStatsFields
impl Default for MatrixStatsFields
Source§fn default() -> MatrixStatsFields
fn default() -> MatrixStatsFields
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MatrixStatsFields
impl<'de> Deserialize<'de> for MatrixStatsFields
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MatrixStatsFields
impl PartialEq for MatrixStatsFields
Source§fn eq(&self, other: &MatrixStatsFields) -> bool
fn eq(&self, other: &MatrixStatsFields) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MatrixStatsFields
impl Serialize for MatrixStatsFields
impl StructuralPartialEq for MatrixStatsFields
Auto Trait Implementations§
impl Freeze for MatrixStatsFields
impl RefUnwindSafe for MatrixStatsFields
impl Send for MatrixStatsFields
impl Sync for MatrixStatsFields
impl Unpin for MatrixStatsFields
impl UnsafeUnpin for MatrixStatsFields
impl UnwindSafe for MatrixStatsFields
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