#[non_exhaustive]pub struct AutoDataQualityBuilder { /* private fields */ }Expand description
A builder for AutoDataQuality.
Implementations§
Source§impl AutoDataQualityBuilder
impl AutoDataQualityBuilder
Sourcepub fn is_enabled(self, input: bool) -> Self
pub fn is_enabled(self, input: bool) -> Self
Specifies whether automatic data quality evaluation is enabled. When set to true, data quality checks are performed automatically.
Sourcepub fn set_is_enabled(self, input: Option<bool>) -> Self
pub fn set_is_enabled(self, input: Option<bool>) -> Self
Specifies whether automatic data quality evaluation is enabled. When set to true, data quality checks are performed automatically.
Sourcepub fn get_is_enabled(&self) -> &Option<bool>
pub fn get_is_enabled(&self) -> &Option<bool>
Specifies whether automatic data quality evaluation is enabled. When set to true, data quality checks are performed automatically.
Sourcepub fn evaluation_context(self, input: impl Into<String>) -> Self
pub fn evaluation_context(self, input: impl Into<String>) -> Self
The evaluation context for the automatic data quality checks. This defines the scope and parameters for the data quality evaluation.
Sourcepub fn set_evaluation_context(self, input: Option<String>) -> Self
pub fn set_evaluation_context(self, input: Option<String>) -> Self
The evaluation context for the automatic data quality checks. This defines the scope and parameters for the data quality evaluation.
Sourcepub fn get_evaluation_context(&self) -> &Option<String>
pub fn get_evaluation_context(&self) -> &Option<String>
The evaluation context for the automatic data quality checks. This defines the scope and parameters for the data quality evaluation.
Sourcepub fn build(self) -> AutoDataQuality
pub fn build(self) -> AutoDataQuality
Consumes the builder and constructs a AutoDataQuality.
Trait Implementations§
Source§impl Clone for AutoDataQualityBuilder
impl Clone for AutoDataQualityBuilder
Source§fn clone(&self) -> AutoDataQualityBuilder
fn clone(&self) -> AutoDataQualityBuilder
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AutoDataQualityBuilder
impl Debug for AutoDataQualityBuilder
Source§impl Default for AutoDataQualityBuilder
impl Default for AutoDataQualityBuilder
Source§fn default() -> AutoDataQualityBuilder
fn default() -> AutoDataQualityBuilder
Source§impl PartialEq for AutoDataQualityBuilder
impl PartialEq for AutoDataQualityBuilder
Source§fn eq(&self, other: &AutoDataQualityBuilder) -> bool
fn eq(&self, other: &AutoDataQualityBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AutoDataQualityBuilder
Auto Trait Implementations§
impl Freeze for AutoDataQualityBuilder
impl RefUnwindSafe for AutoDataQualityBuilder
impl Send for AutoDataQualityBuilder
impl Sync for AutoDataQualityBuilder
impl Unpin for AutoDataQualityBuilder
impl UnsafeUnpin for AutoDataQualityBuilder
impl UnwindSafe for AutoDataQualityBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more