pub struct MuteInfo {
pub dynamic_mute_records: Option<Vec<DynamicMuteRecord>>,
pub static_mute: Option<StaticMute>,
}Expand description
Mute information about the finding, including whether the finding has a static mute or any matching dynamic mute rules.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dynamic_mute_records: Option<Vec<DynamicMuteRecord>>The list of dynamic mute rules that currently match the finding.
static_mute: Option<StaticMute>If set, the static mute applied to this finding. Static mutes override dynamic mutes. If unset, there is no static mute.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MuteInfo
impl<'de> Deserialize<'de> for MuteInfo
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
impl Part for MuteInfo
Auto Trait Implementations§
impl Freeze for MuteInfo
impl RefUnwindSafe for MuteInfo
impl Send for MuteInfo
impl Sync for MuteInfo
impl Unpin for MuteInfo
impl UnwindSafe for MuteInfo
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