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