#[non_exhaustive]pub struct BucketStatisticsBySensitivityBuilder { /* private fields */ }Expand description
A builder for BucketStatisticsBySensitivity.
Implementations§
source§impl BucketStatisticsBySensitivityBuilder
impl BucketStatisticsBySensitivityBuilder
sourcepub fn classification_error(self, input: SensitivityAggregations) -> Self
pub fn classification_error(self, input: SensitivityAggregations) -> Self
The aggregated statistical data for all buckets that have a sensitivity score of -1.
sourcepub fn set_classification_error(
self,
input: Option<SensitivityAggregations>,
) -> Self
pub fn set_classification_error( self, input: Option<SensitivityAggregations>, ) -> Self
The aggregated statistical data for all buckets that have a sensitivity score of -1.
sourcepub fn get_classification_error(&self) -> &Option<SensitivityAggregations>
pub fn get_classification_error(&self) -> &Option<SensitivityAggregations>
The aggregated statistical data for all buckets that have a sensitivity score of -1.
sourcepub fn not_classified(self, input: SensitivityAggregations) -> Self
pub fn not_classified(self, input: SensitivityAggregations) -> Self
The aggregated statistical data for all buckets that have a sensitivity score of 50.
sourcepub fn set_not_classified(self, input: Option<SensitivityAggregations>) -> Self
pub fn set_not_classified(self, input: Option<SensitivityAggregations>) -> Self
The aggregated statistical data for all buckets that have a sensitivity score of 50.
sourcepub fn get_not_classified(&self) -> &Option<SensitivityAggregations>
pub fn get_not_classified(&self) -> &Option<SensitivityAggregations>
The aggregated statistical data for all buckets that have a sensitivity score of 50.
sourcepub fn not_sensitive(self, input: SensitivityAggregations) -> Self
pub fn not_sensitive(self, input: SensitivityAggregations) -> Self
The aggregated statistical data for all buckets that have a sensitivity score of 1-49.
sourcepub fn set_not_sensitive(self, input: Option<SensitivityAggregations>) -> Self
pub fn set_not_sensitive(self, input: Option<SensitivityAggregations>) -> Self
The aggregated statistical data for all buckets that have a sensitivity score of 1-49.
sourcepub fn get_not_sensitive(&self) -> &Option<SensitivityAggregations>
pub fn get_not_sensitive(&self) -> &Option<SensitivityAggregations>
The aggregated statistical data for all buckets that have a sensitivity score of 1-49.
sourcepub fn sensitive(self, input: SensitivityAggregations) -> Self
pub fn sensitive(self, input: SensitivityAggregations) -> Self
The aggregated statistical data for all buckets that have a sensitivity score of 51-100.
sourcepub fn set_sensitive(self, input: Option<SensitivityAggregations>) -> Self
pub fn set_sensitive(self, input: Option<SensitivityAggregations>) -> Self
The aggregated statistical data for all buckets that have a sensitivity score of 51-100.
sourcepub fn get_sensitive(&self) -> &Option<SensitivityAggregations>
pub fn get_sensitive(&self) -> &Option<SensitivityAggregations>
The aggregated statistical data for all buckets that have a sensitivity score of 51-100.
sourcepub fn build(self) -> BucketStatisticsBySensitivity
pub fn build(self) -> BucketStatisticsBySensitivity
Consumes the builder and constructs a BucketStatisticsBySensitivity.
Trait Implementations§
source§impl Clone for BucketStatisticsBySensitivityBuilder
impl Clone for BucketStatisticsBySensitivityBuilder
source§fn clone(&self) -> BucketStatisticsBySensitivityBuilder
fn clone(&self) -> BucketStatisticsBySensitivityBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for BucketStatisticsBySensitivityBuilder
impl Default for BucketStatisticsBySensitivityBuilder
source§fn default() -> BucketStatisticsBySensitivityBuilder
fn default() -> BucketStatisticsBySensitivityBuilder
source§impl PartialEq for BucketStatisticsBySensitivityBuilder
impl PartialEq for BucketStatisticsBySensitivityBuilder
source§fn eq(&self, other: &BucketStatisticsBySensitivityBuilder) -> bool
fn eq(&self, other: &BucketStatisticsBySensitivityBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BucketStatisticsBySensitivityBuilder
Auto Trait Implementations§
impl Freeze for BucketStatisticsBySensitivityBuilder
impl RefUnwindSafe for BucketStatisticsBySensitivityBuilder
impl Send for BucketStatisticsBySensitivityBuilder
impl Sync for BucketStatisticsBySensitivityBuilder
impl Unpin for BucketStatisticsBySensitivityBuilder
impl UnwindSafe for BucketStatisticsBySensitivityBuilder
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