#[non_exhaustive]pub struct DataClassificationDetailsBuilder { /* private fields */ }Expand description
A builder for DataClassificationDetails.
Implementations§
source§impl DataClassificationDetailsBuilder
 
impl DataClassificationDetailsBuilder
sourcepub fn detailed_results_location(self, input: impl Into<String>) -> Self
 
pub fn detailed_results_location(self, input: impl Into<String>) -> Self
The path to the folder or file that contains the sensitive data.
sourcepub fn set_detailed_results_location(self, input: Option<String>) -> Self
 
pub fn set_detailed_results_location(self, input: Option<String>) -> Self
The path to the folder or file that contains the sensitive data.
sourcepub fn get_detailed_results_location(&self) -> &Option<String>
 
pub fn get_detailed_results_location(&self) -> &Option<String>
The path to the folder or file that contains the sensitive data.
sourcepub fn result(self, input: ClassificationResult) -> Self
 
pub fn result(self, input: ClassificationResult) -> Self
The details about the sensitive data that was detected on the resource.
sourcepub fn set_result(self, input: Option<ClassificationResult>) -> Self
 
pub fn set_result(self, input: Option<ClassificationResult>) -> Self
The details about the sensitive data that was detected on the resource.
sourcepub fn get_result(&self) -> &Option<ClassificationResult>
 
pub fn get_result(&self) -> &Option<ClassificationResult>
The details about the sensitive data that was detected on the resource.
sourcepub fn build(self) -> DataClassificationDetails
 
pub fn build(self) -> DataClassificationDetails
Consumes the builder and constructs a DataClassificationDetails.
Trait Implementations§
source§impl Clone for DataClassificationDetailsBuilder
 
impl Clone for DataClassificationDetailsBuilder
source§fn clone(&self) -> DataClassificationDetailsBuilder
 
fn clone(&self) -> DataClassificationDetailsBuilder
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 Default for DataClassificationDetailsBuilder
 
impl Default for DataClassificationDetailsBuilder
source§fn default() -> DataClassificationDetailsBuilder
 
fn default() -> DataClassificationDetailsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DataClassificationDetailsBuilder
 
impl PartialEq for DataClassificationDetailsBuilder
source§fn eq(&self, other: &DataClassificationDetailsBuilder) -> bool
 
fn eq(&self, other: &DataClassificationDetailsBuilder) -> bool
Tests for 
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DataClassificationDetailsBuilder
Auto Trait Implementations§
impl Freeze for DataClassificationDetailsBuilder
impl RefUnwindSafe for DataClassificationDetailsBuilder
impl Send for DataClassificationDetailsBuilder
impl Sync for DataClassificationDetailsBuilder
impl Unpin for DataClassificationDetailsBuilder
impl UnwindSafe for DataClassificationDetailsBuilder
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
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts 
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>
Converts 
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 moreCreates a shared type from an unshared type.