pub struct NumericFeatureMatrixF64 {
pub feature_set_id: String,
pub representation_id: RepresentationId,
pub feature_names: Vec<String>,
pub observation_ids: Vec<ObservationId>,
pub values: Vec<f64>,
pub validity_mask: Option<Vec<bool>>,
}Fields§
§feature_set_id: String§representation_id: RepresentationId§feature_names: Vec<String>§observation_ids: Vec<ObservationId>§values: Vec<f64>§validity_mask: Option<Vec<bool>>Implementations§
Trait Implementations§
Source§impl Clone for NumericFeatureMatrixF64
impl Clone for NumericFeatureMatrixF64
Source§fn clone(&self) -> NumericFeatureMatrixF64
fn clone(&self) -> NumericFeatureMatrixF64
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 NumericFeatureMatrixF64
impl Debug for NumericFeatureMatrixF64
Source§impl<'de> Deserialize<'de> for NumericFeatureMatrixF64
impl<'de> Deserialize<'de> for NumericFeatureMatrixF64
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 NumericFeatureMatrixF64
impl PartialEq for NumericFeatureMatrixF64
Source§fn eq(&self, other: &NumericFeatureMatrixF64) -> bool
fn eq(&self, other: &NumericFeatureMatrixF64) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NumericFeatureMatrixF64
impl Serialize for NumericFeatureMatrixF64
impl StructuralPartialEq for NumericFeatureMatrixF64
Auto Trait Implementations§
impl Freeze for NumericFeatureMatrixF64
impl RefUnwindSafe for NumericFeatureMatrixF64
impl Send for NumericFeatureMatrixF64
impl Sync for NumericFeatureMatrixF64
impl Unpin for NumericFeatureMatrixF64
impl UnsafeUnpin for NumericFeatureMatrixF64
impl UnwindSafe for NumericFeatureMatrixF64
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