pub struct DataView {
pub sample_ids: Option<Vec<SampleId>>,
pub partition: Option<String>,
pub fold_id: Option<String>,
pub source_ids: Option<Vec<SourceId>>,
pub columns: Option<Vec<String>>,
pub include_augmented: bool,
pub include_excluded: bool,
pub branch_view: Option<CoordinatorBranchView>,
pub extra: BTreeMap<String, Value>,
}Fields§
§sample_ids: Option<Vec<SampleId>>§partition: Option<String>§fold_id: Option<String>§source_ids: Option<Vec<SourceId>>§columns: Option<Vec<String>>§include_augmented: bool§include_excluded: bool§branch_view: Option<CoordinatorBranchView>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl<'de> Deserialize<'de> for DataView
impl<'de> Deserialize<'de> for DataView
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
impl Eq for DataView
impl StructuralPartialEq for DataView
Auto Trait Implementations§
impl Freeze for DataView
impl RefUnwindSafe for DataView
impl Send for DataView
impl Sync for DataView
impl Unpin for DataView
impl UnsafeUnpin for DataView
impl UnwindSafe for DataView
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