pub struct ReportFinding {
pub severity: ReportSeverity,
pub check_id: Option<String>,
pub code: String,
pub message: String,
pub location: Option<ReportLocation>,
pub fingerprint: Option<String>,
pub data: Option<Value>,
}Fields§
§severity: ReportSeverity§check_id: Option<String>§code: String§message: String§location: Option<ReportLocation>§fingerprint: Option<String>§data: Option<Value>Trait Implementations§
Source§impl Clone for ReportFinding
impl Clone for ReportFinding
Source§fn clone(&self) -> ReportFinding
fn clone(&self) -> ReportFinding
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 ReportFinding
impl Debug for ReportFinding
Source§impl<'de> Deserialize<'de> for ReportFinding
impl<'de> Deserialize<'de> for ReportFinding
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 ReportFinding
impl RefUnwindSafe for ReportFinding
impl Send for ReportFinding
impl Sync for ReportFinding
impl Unpin for ReportFinding
impl UnsafeUnpin for ReportFinding
impl UnwindSafe for ReportFinding
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