pub struct NumericCollationInputBlock {
pub block_id: String,
pub representation_id: RepresentationId,
pub observation_ids: Vec<ObservationId>,
pub sample_ids: Vec<SampleId>,
pub rows: Vec<Vec<Option<f64>>>,
pub feature_names: Option<Vec<String>>,
}Fields§
§block_id: String§representation_id: RepresentationId§observation_ids: Vec<ObservationId>§sample_ids: Vec<SampleId>§rows: Vec<Vec<Option<f64>>>§feature_names: Option<Vec<String>>Trait Implementations§
Source§impl Clone for NumericCollationInputBlock
impl Clone for NumericCollationInputBlock
Source§fn clone(&self) -> NumericCollationInputBlock
fn clone(&self) -> NumericCollationInputBlock
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 NumericCollationInputBlock
impl Debug for NumericCollationInputBlock
Source§impl<'de> Deserialize<'de> for NumericCollationInputBlock
impl<'de> Deserialize<'de> for NumericCollationInputBlock
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NumericCollationInputBlock, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NumericCollationInputBlock, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NumericCollationInputBlock
impl PartialEq for NumericCollationInputBlock
Source§fn eq(&self, other: &NumericCollationInputBlock) -> bool
fn eq(&self, other: &NumericCollationInputBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NumericCollationInputBlock
impl Serialize for NumericCollationInputBlock
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for NumericCollationInputBlock
Auto Trait Implementations§
impl Freeze for NumericCollationInputBlock
impl RefUnwindSafe for NumericCollationInputBlock
impl Send for NumericCollationInputBlock
impl Sync for NumericCollationInputBlock
impl Unpin for NumericCollationInputBlock
impl UnsafeUnpin for NumericCollationInputBlock
impl UnwindSafe for NumericCollationInputBlock
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