#[non_exhaustive]pub struct SensitiveDataScannerMeta {
pub count_limit: Option<i64>,
pub group_count_limit: Option<i64>,
pub has_highlight_enabled: Option<bool>,
pub has_multi_pass_enabled: Option<bool>,
pub is_pci_compliant: Option<bool>,
pub version: Option<i64>,
pub additional_properties: BTreeMap<String, Value>,
/* private fields */
}
Expand description
Meta response containing information about the API.
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.count_limit: Option<i64>
Maximum number of scanning rules allowed for the org.
group_count_limit: Option<i64>
Maximum number of scanning groups allowed for the org.
has_highlight_enabled: Option<bool>
👎Deprecated
(Deprecated) Whether or not scanned events are highlighted in Logs or RUM for the org.
has_multi_pass_enabled: Option<bool>
👎Deprecated
(Deprecated) Whether or not scanned events have multi-pass enabled.
is_pci_compliant: Option<bool>
Whether or not the org is compliant to the payment card industry standard.
version: Option<i64>
Version of the API.
additional_properties: BTreeMap<String, Value>
Implementations§
Source§impl SensitiveDataScannerMeta
impl SensitiveDataScannerMeta
pub fn new() -> SensitiveDataScannerMeta
pub fn count_limit(self, value: i64) -> Self
pub fn group_count_limit(self, value: i64) -> Self
pub fn has_highlight_enabled(self, value: bool) -> Self
pub fn has_multi_pass_enabled(self, value: bool) -> Self
pub fn is_pci_compliant(self, value: bool) -> Self
pub fn version(self, value: i64) -> Self
pub fn additional_properties(self, value: BTreeMap<String, Value>) -> Self
Trait Implementations§
Source§impl Clone for SensitiveDataScannerMeta
impl Clone for SensitiveDataScannerMeta
Source§fn clone(&self) -> SensitiveDataScannerMeta
fn clone(&self) -> SensitiveDataScannerMeta
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 SensitiveDataScannerMeta
impl Debug for SensitiveDataScannerMeta
Source§impl Default for SensitiveDataScannerMeta
impl Default for SensitiveDataScannerMeta
Source§impl<'de> Deserialize<'de> for SensitiveDataScannerMeta
impl<'de> Deserialize<'de> for SensitiveDataScannerMeta
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SensitiveDataScannerMeta
impl PartialEq for SensitiveDataScannerMeta
Source§impl Serialize for SensitiveDataScannerMeta
impl Serialize for SensitiveDataScannerMeta
impl StructuralPartialEq for SensitiveDataScannerMeta
Auto Trait Implementations§
impl Freeze for SensitiveDataScannerMeta
impl RefUnwindSafe for SensitiveDataScannerMeta
impl Send for SensitiveDataScannerMeta
impl Sync for SensitiveDataScannerMeta
impl Unpin for SensitiveDataScannerMeta
impl UnwindSafe for SensitiveDataScannerMeta
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