pub struct CoordinatorFeatureBlockF64 {
pub feature_set_id: String,
pub representation_id: RepresentationId,
pub feature_names: Vec<String>,
pub observation_ids: Vec<ObservationId>,
pub sample_ids: Vec<SampleId>,
pub values: Vec<f64>,
}Expand description
Typed sibling of CoordinatorFeatureBlock: the same projection with the
cells flattened row-major into one Vec<f64> instead of per-cell JSON
values. Produced by the *_f64 projection path so a large numeric block
never allocates rows × cols boxed serde_json::Values. Masked cells
are rejected by that path (it has no Null to project them into).
Fields§
§feature_set_id: String§representation_id: RepresentationId§feature_names: Vec<String>§observation_ids: Vec<ObservationId>§sample_ids: Vec<SampleId>§values: Vec<f64>Trait Implementations§
Source§impl Clone for CoordinatorFeatureBlockF64
impl Clone for CoordinatorFeatureBlockF64
Source§fn clone(&self) -> CoordinatorFeatureBlockF64
fn clone(&self) -> CoordinatorFeatureBlockF64
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 CoordinatorFeatureBlockF64
impl Debug for CoordinatorFeatureBlockF64
Source§impl PartialEq for CoordinatorFeatureBlockF64
impl PartialEq for CoordinatorFeatureBlockF64
Source§fn eq(&self, other: &CoordinatorFeatureBlockF64) -> bool
fn eq(&self, other: &CoordinatorFeatureBlockF64) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CoordinatorFeatureBlockF64
Auto Trait Implementations§
impl Freeze for CoordinatorFeatureBlockF64
impl RefUnwindSafe for CoordinatorFeatureBlockF64
impl Send for CoordinatorFeatureBlockF64
impl Sync for CoordinatorFeatureBlockF64
impl Unpin for CoordinatorFeatureBlockF64
impl UnsafeUnpin for CoordinatorFeatureBlockF64
impl UnwindSafe for CoordinatorFeatureBlockF64
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