pub struct FindingSummary {
pub id: String,
pub severity: String,
pub message: String,
}Expand description
Summary of a finding for logging.
Fields§
§id: StringRule ID
severity: StringSeverity level
message: StringMessage
Trait Implementations§
Source§impl Clone for FindingSummary
impl Clone for FindingSummary
Source§fn clone(&self) -> FindingSummary
fn clone(&self) -> FindingSummary
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 FindingSummary
impl Debug for FindingSummary
Source§impl<'de> Deserialize<'de> for FindingSummary
impl<'de> Deserialize<'de> for FindingSummary
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 From<&Finding> for FindingSummary
impl From<&Finding> for FindingSummary
Auto Trait Implementations§
impl Freeze for FindingSummary
impl RefUnwindSafe for FindingSummary
impl Send for FindingSummary
impl Sync for FindingSummary
impl Unpin for FindingSummary
impl UnwindSafe for FindingSummary
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