#[non_exhaustive]pub enum AppliedConfigs {
DataProfileConfigs(Box<DataProfileAppliedConfigs>),
DataQualityConfigs(Box<DataQualityAppliedConfigs>),
}Expand description
The applied configs in the data scan job.
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.
DataProfileConfigs(Box<DataProfileAppliedConfigs>)
Applied configs for data profile type data scan.
DataQualityConfigs(Box<DataQualityAppliedConfigs>)
Applied configs for data quality type data scan.
Trait Implementations§
Source§impl Clone for AppliedConfigs
impl Clone for AppliedConfigs
Source§fn clone(&self) -> AppliedConfigs
fn clone(&self) -> AppliedConfigs
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 AppliedConfigs
impl Debug for AppliedConfigs
Source§impl PartialEq for AppliedConfigs
impl PartialEq for AppliedConfigs
impl StructuralPartialEq for AppliedConfigs
Auto Trait Implementations§
impl Freeze for AppliedConfigs
impl RefUnwindSafe for AppliedConfigs
impl Send for AppliedConfigs
impl Sync for AppliedConfigs
impl Unpin for AppliedConfigs
impl UnwindSafe for AppliedConfigs
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