pub struct DynamicMuteRecord {
pub match_time: Option<DateTime<Utc>>,
pub mute_config: Option<String>,
}Expand description
The record of a dynamic mute rule that matches the finding.
This type is not used in any activity, and only used as part of another schema.
Fields§
§match_time: Option<DateTime<Utc>>When the dynamic mute rule first matched the finding.
mute_config: Option<String>The relative resource name of the mute rule, represented by a mute config, that created this record, for example organizations/123/muteConfigs/mymuteconfig or organizations/123/locations/global/muteConfigs/mymuteconfig.
Trait Implementations§
Source§impl Clone for DynamicMuteRecord
impl Clone for DynamicMuteRecord
Source§fn clone(&self) -> DynamicMuteRecord
fn clone(&self) -> DynamicMuteRecord
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 DynamicMuteRecord
impl Debug for DynamicMuteRecord
Source§impl Default for DynamicMuteRecord
impl Default for DynamicMuteRecord
Source§fn default() -> DynamicMuteRecord
fn default() -> DynamicMuteRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DynamicMuteRecord
impl<'de> Deserialize<'de> for DynamicMuteRecord
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 Serialize for DynamicMuteRecord
impl Serialize for DynamicMuteRecord
impl Part for DynamicMuteRecord
Auto Trait Implementations§
impl Freeze for DynamicMuteRecord
impl RefUnwindSafe for DynamicMuteRecord
impl Send for DynamicMuteRecord
impl Sync for DynamicMuteRecord
impl Unpin for DynamicMuteRecord
impl UnwindSafe for DynamicMuteRecord
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