pub struct ScanFinding {
pub module: String,
pub finding: Option<String>,
pub evidence: Vec<String>,
pub data: Value,
}Fields§
§module: String§finding: Option<String>§evidence: Vec<String>§data: ValueTrait Implementations§
Source§impl Clone for ScanFinding
impl Clone for ScanFinding
Source§fn clone(&self) -> ScanFinding
fn clone(&self) -> ScanFinding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScanFinding
impl Debug for ScanFinding
Source§impl<'de> Deserialize<'de> for ScanFinding
impl<'de> Deserialize<'de> for ScanFinding
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
Auto Trait Implementations§
impl Freeze for ScanFinding
impl RefUnwindSafe for ScanFinding
impl Send for ScanFinding
impl Sync for ScanFinding
impl Unpin for ScanFinding
impl UnsafeUnpin for ScanFinding
impl UnwindSafe for ScanFinding
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