pub struct FindingRef {
pub sensor_id: String,
pub fingerprint: Option<String>,
pub code: Option<String>,
pub tool: Option<String>,
pub check_id: Option<String>,
}Expand description
Reference to a finding that a fix addresses.
Fields§
§sensor_id: String§fingerprint: Option<String>§code: Option<String>§tool: Option<String>§check_id: Option<String>Trait Implementations§
Source§impl Clone for FindingRef
impl Clone for FindingRef
Source§fn clone(&self) -> FindingRef
fn clone(&self) -> FindingRef
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 FindingRef
impl Debug for FindingRef
Source§impl<'de> Deserialize<'de> for FindingRef
impl<'de> Deserialize<'de> for FindingRef
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 PartialEq for FindingRef
impl PartialEq for FindingRef
Source§impl Serialize for FindingRef
impl Serialize for FindingRef
impl Eq for FindingRef
impl StructuralPartialEq for FindingRef
Auto Trait Implementations§
impl Freeze for FindingRef
impl RefUnwindSafe for FindingRef
impl Send for FindingRef
impl Sync for FindingRef
impl Unpin for FindingRef
impl UnsafeUnpin for FindingRef
impl UnwindSafe for FindingRef
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