pub struct MapFilter {
pub comparison: Option<String>,
pub key: Option<String>,
pub value: Option<String>,
}
Expand description
The map filter for querying findings.
Fields§
§comparison: Option<String>
The condition to apply to a key value when querying for findings with a map filter.
key: Option<String>
The key of the map filter.
value: Option<String>
The value for the key in the map filter.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MapFilter
impl<'de> Deserialize<'de> for MapFilter
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 StructuralPartialEq for MapFilter
Auto Trait Implementations§
impl Freeze for MapFilter
impl RefUnwindSafe for MapFilter
impl Send for MapFilter
impl Sync for MapFilter
impl Unpin for MapFilter
impl UnwindSafe for MapFilter
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