#[non_exhaustive]pub struct DriftCheckBaselinesBuilder { /* private fields */ }
Expand description
A builder for DriftCheckBaselines
.
Implementations§
source§impl DriftCheckBaselinesBuilder
impl DriftCheckBaselinesBuilder
sourcepub fn bias(self, input: DriftCheckBias) -> Self
pub fn bias(self, input: DriftCheckBias) -> Self
Represents the drift check bias baselines that can be used when the model monitor is set using the model package.
sourcepub fn set_bias(self, input: Option<DriftCheckBias>) -> Self
pub fn set_bias(self, input: Option<DriftCheckBias>) -> Self
Represents the drift check bias baselines that can be used when the model monitor is set using the model package.
sourcepub fn get_bias(&self) -> &Option<DriftCheckBias>
pub fn get_bias(&self) -> &Option<DriftCheckBias>
Represents the drift check bias baselines that can be used when the model monitor is set using the model package.
sourcepub fn explainability(self, input: DriftCheckExplainability) -> Self
pub fn explainability(self, input: DriftCheckExplainability) -> Self
Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.
sourcepub fn set_explainability(self, input: Option<DriftCheckExplainability>) -> Self
pub fn set_explainability(self, input: Option<DriftCheckExplainability>) -> Self
Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.
sourcepub fn get_explainability(&self) -> &Option<DriftCheckExplainability>
pub fn get_explainability(&self) -> &Option<DriftCheckExplainability>
Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.
sourcepub fn model_quality(self, input: DriftCheckModelQuality) -> Self
pub fn model_quality(self, input: DriftCheckModelQuality) -> Self
Represents the drift check model quality baselines that can be used when the model monitor is set using the model package.
sourcepub fn set_model_quality(self, input: Option<DriftCheckModelQuality>) -> Self
pub fn set_model_quality(self, input: Option<DriftCheckModelQuality>) -> Self
Represents the drift check model quality baselines that can be used when the model monitor is set using the model package.
sourcepub fn get_model_quality(&self) -> &Option<DriftCheckModelQuality>
pub fn get_model_quality(&self) -> &Option<DriftCheckModelQuality>
Represents the drift check model quality baselines that can be used when the model monitor is set using the model package.
sourcepub fn model_data_quality(self, input: DriftCheckModelDataQuality) -> Self
pub fn model_data_quality(self, input: DriftCheckModelDataQuality) -> Self
Represents the drift check model data quality baselines that can be used when the model monitor is set using the model package.
sourcepub fn set_model_data_quality(
self,
input: Option<DriftCheckModelDataQuality>,
) -> Self
pub fn set_model_data_quality( self, input: Option<DriftCheckModelDataQuality>, ) -> Self
Represents the drift check model data quality baselines that can be used when the model monitor is set using the model package.
sourcepub fn get_model_data_quality(&self) -> &Option<DriftCheckModelDataQuality>
pub fn get_model_data_quality(&self) -> &Option<DriftCheckModelDataQuality>
Represents the drift check model data quality baselines that can be used when the model monitor is set using the model package.
sourcepub fn build(self) -> DriftCheckBaselines
pub fn build(self) -> DriftCheckBaselines
Consumes the builder and constructs a DriftCheckBaselines
.
Trait Implementations§
source§impl Clone for DriftCheckBaselinesBuilder
impl Clone for DriftCheckBaselinesBuilder
source§fn clone(&self) -> DriftCheckBaselinesBuilder
fn clone(&self) -> DriftCheckBaselinesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DriftCheckBaselinesBuilder
impl Debug for DriftCheckBaselinesBuilder
source§impl Default for DriftCheckBaselinesBuilder
impl Default for DriftCheckBaselinesBuilder
source§fn default() -> DriftCheckBaselinesBuilder
fn default() -> DriftCheckBaselinesBuilder
impl StructuralPartialEq for DriftCheckBaselinesBuilder
Auto Trait Implementations§
impl Freeze for DriftCheckBaselinesBuilder
impl RefUnwindSafe for DriftCheckBaselinesBuilder
impl Send for DriftCheckBaselinesBuilder
impl Sync for DriftCheckBaselinesBuilder
impl Unpin for DriftCheckBaselinesBuilder
impl UnwindSafe for DriftCheckBaselinesBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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