#[non_exhaustive]pub struct ViolationEventAdditionalInfoBuilder { /* private fields */ }
Expand description
A builder for ViolationEventAdditionalInfo
.
Implementations§
source§impl ViolationEventAdditionalInfoBuilder
impl ViolationEventAdditionalInfoBuilder
sourcepub fn confidence_level(self, input: ConfidenceLevel) -> Self
pub fn confidence_level(self, input: ConfidenceLevel) -> Self
The sensitivity of anomalous behavior evaluation. Can be Low
, Medium
, or High
.
sourcepub fn set_confidence_level(self, input: Option<ConfidenceLevel>) -> Self
pub fn set_confidence_level(self, input: Option<ConfidenceLevel>) -> Self
The sensitivity of anomalous behavior evaluation. Can be Low
, Medium
, or High
.
sourcepub fn get_confidence_level(&self) -> &Option<ConfidenceLevel>
pub fn get_confidence_level(&self) -> &Option<ConfidenceLevel>
The sensitivity of anomalous behavior evaluation. Can be Low
, Medium
, or High
.
sourcepub fn build(self) -> ViolationEventAdditionalInfo
pub fn build(self) -> ViolationEventAdditionalInfo
Consumes the builder and constructs a ViolationEventAdditionalInfo
.
Trait Implementations§
source§impl Clone for ViolationEventAdditionalInfoBuilder
impl Clone for ViolationEventAdditionalInfoBuilder
source§fn clone(&self) -> ViolationEventAdditionalInfoBuilder
fn clone(&self) -> ViolationEventAdditionalInfoBuilder
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 ViolationEventAdditionalInfoBuilder
impl Default for ViolationEventAdditionalInfoBuilder
source§fn default() -> ViolationEventAdditionalInfoBuilder
fn default() -> ViolationEventAdditionalInfoBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ViolationEventAdditionalInfoBuilder> for ViolationEventAdditionalInfoBuilder
impl PartialEq<ViolationEventAdditionalInfoBuilder> for ViolationEventAdditionalInfoBuilder
source§fn eq(&self, other: &ViolationEventAdditionalInfoBuilder) -> bool
fn eq(&self, other: &ViolationEventAdditionalInfoBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ViolationEventAdditionalInfoBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ViolationEventAdditionalInfoBuilder
impl Send for ViolationEventAdditionalInfoBuilder
impl Sync for ViolationEventAdditionalInfoBuilder
impl Unpin for ViolationEventAdditionalInfoBuilder
impl UnwindSafe for ViolationEventAdditionalInfoBuilder
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