pub struct RuleList {
pub data: Option<Vec<RuleView>>,
}Fields§
§data: Option<Vec<RuleView>>Data is every rule a scan can fire, each with the id, name and severity a finding cites.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RuleList
impl<'de> Deserialize<'de> for RuleList
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 RuleList
Auto Trait Implementations§
impl Freeze for RuleList
impl RefUnwindSafe for RuleList
impl Send for RuleList
impl Sync for RuleList
impl Unpin for RuleList
impl UnsafeUnpin for RuleList
impl UnwindSafe for RuleList
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