#[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 copy 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<'de> Deserialize<'de> for DatasetConfig
impl<'de> Deserialize<'de> for DatasetConfig
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
Source§impl PartialEq for DatasetConfig
impl PartialEq for DatasetConfig
Source§impl Serialize for DatasetConfig
impl Serialize 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