#[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
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DataClassificationDetailsBuilder
Auto Trait Implementations§
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