#[non_exhaustive]pub enum DatasetConfig {
SingleTargetDataset(Box<SingleTargetDataset>),
SourceHierarchyDatasets(Box<SourceHierarchyDatasets>),
}
Expand description
Target dataset(s) configuration.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
SingleTargetDataset(Box<SingleTargetDataset>)
Single destination dataset.
SourceHierarchyDatasets(Box<SourceHierarchyDatasets>)
Source hierarchy datasets.
Trait Implementations§
Source§impl Clone for DatasetConfig
impl Clone for DatasetConfig
Source§fn clone(&self) -> DatasetConfig
fn clone(&self) -> DatasetConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 DatasetConfig
impl Debug for DatasetConfig
Source§impl PartialEq for DatasetConfig
impl PartialEq for DatasetConfig
impl StructuralPartialEq for DatasetConfig
Auto Trait Implementations§
impl Freeze for DatasetConfig
impl RefUnwindSafe for DatasetConfig
impl Send for DatasetConfig
impl Sync for DatasetConfig
impl Unpin for DatasetConfig
impl UnwindSafe for DatasetConfig
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