pub struct TrendFinding {
pub sensor_id: String,
pub code: String,
pub message: String,
pub path: Option<String>,
pub line: Option<u32>,
pub fingerprint: Option<String>,
pub severity: Severity,
}Expand description
A finding that changed between baseline and current.
Fields§
§sensor_id: String§code: String§message: String§path: Option<String>§line: Option<u32>§fingerprint: Option<String>§severity: SeverityTrait Implementations§
Source§impl Clone for TrendFinding
impl Clone for TrendFinding
Source§fn clone(&self) -> TrendFinding
fn clone(&self) -> TrendFinding
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 TrendFinding
impl Debug for TrendFinding
Source§impl<'de> Deserialize<'de> for TrendFinding
impl<'de> Deserialize<'de> for TrendFinding
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 TrendFinding
impl PartialEq for TrendFinding
Source§impl Serialize for TrendFinding
impl Serialize for TrendFinding
impl Eq for TrendFinding
impl StructuralPartialEq for TrendFinding
Auto Trait Implementations§
impl Freeze for TrendFinding
impl RefUnwindSafe for TrendFinding
impl Send for TrendFinding
impl Sync for TrendFinding
impl Unpin for TrendFinding
impl UnsafeUnpin for TrendFinding
impl UnwindSafe for TrendFinding
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