pub struct CoordinatorMultiTargetBlock {
pub target_ids: Vec<TargetId>,
pub sample_ids: Vec<SampleId>,
pub values: Vec<Vec<Value>>,
pub validity_masks: Vec<Vec<bool>>,
}Fields§
§target_ids: Vec<TargetId>§sample_ids: Vec<SampleId>§values: Vec<Vec<Value>>Target-major values: values[target_idx][sample_idx].
validity_masks: Vec<Vec<bool>>Target-major validity masks aligned with values.
Trait Implementations§
Source§impl Clone for CoordinatorMultiTargetBlock
impl Clone for CoordinatorMultiTargetBlock
Source§fn clone(&self) -> CoordinatorMultiTargetBlock
fn clone(&self) -> CoordinatorMultiTargetBlock
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 CoordinatorMultiTargetBlock
impl Debug for CoordinatorMultiTargetBlock
Source§impl<'de> Deserialize<'de> for CoordinatorMultiTargetBlock
impl<'de> Deserialize<'de> for CoordinatorMultiTargetBlock
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoordinatorMultiTargetBlock, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoordinatorMultiTargetBlock, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CoordinatorMultiTargetBlock
impl PartialEq for CoordinatorMultiTargetBlock
Source§fn eq(&self, other: &CoordinatorMultiTargetBlock) -> bool
fn eq(&self, other: &CoordinatorMultiTargetBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CoordinatorMultiTargetBlock
impl Serialize for CoordinatorMultiTargetBlock
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 CoordinatorMultiTargetBlock
Auto Trait Implementations§
impl Freeze for CoordinatorMultiTargetBlock
impl RefUnwindSafe for CoordinatorMultiTargetBlock
impl Send for CoordinatorMultiTargetBlock
impl Sync for CoordinatorMultiTargetBlock
impl Unpin for CoordinatorMultiTargetBlock
impl UnsafeUnpin for CoordinatorMultiTargetBlock
impl UnwindSafe for CoordinatorMultiTargetBlock
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