#[non_exhaustive]pub struct SdpBasicConfig {
pub filter_enforcement: SdpBasicConfigEnforcement,
/* private fields */
}Expand description
Sensitive Data Protection basic configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.filter_enforcement: SdpBasicConfigEnforcementOptional. Tells whether the Sensitive Data Protection basic config is enabled or disabled.
Implementations§
Source§impl SdpBasicConfig
impl SdpBasicConfig
pub fn new() -> Self
Sourcepub fn set_filter_enforcement<T: Into<SdpBasicConfigEnforcement>>(
self,
v: T,
) -> Self
pub fn set_filter_enforcement<T: Into<SdpBasicConfigEnforcement>>( self, v: T, ) -> Self
Sets the value of filter_enforcement.
Trait Implementations§
Source§impl Clone for SdpBasicConfig
impl Clone for SdpBasicConfig
Source§fn clone(&self) -> SdpBasicConfig
fn clone(&self) -> SdpBasicConfig
Returns a duplicate 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 Debug for SdpBasicConfig
impl Debug for SdpBasicConfig
Source§impl Default for SdpBasicConfig
impl Default for SdpBasicConfig
Source§fn default() -> SdpBasicConfig
fn default() -> SdpBasicConfig
Returns the “default value” for a type. Read more
Source§impl Message for SdpBasicConfig
impl Message for SdpBasicConfig
Source§impl PartialEq for SdpBasicConfig
impl PartialEq for SdpBasicConfig
impl StructuralPartialEq for SdpBasicConfig
Auto Trait Implementations§
impl Freeze for SdpBasicConfig
impl RefUnwindSafe for SdpBasicConfig
impl Send for SdpBasicConfig
impl Sync for SdpBasicConfig
impl Unpin for SdpBasicConfig
impl UnwindSafe for SdpBasicConfig
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