pub struct BaselineEntry {
pub rule_id: String,
pub file: PathBuf,
pub line: usize,
pub fingerprint: String,
pub first_seen: String,
pub suppressed: bool,
pub comment: Option<String>,
}Expand description
Baseline entry for a finding
Fields§
§rule_id: String§file: PathBuf§line: usize§fingerprint: String§first_seen: String§suppressed: bool§comment: Option<String>Trait Implementations§
Source§impl Clone for BaselineEntry
impl Clone for BaselineEntry
Source§fn clone(&self) -> BaselineEntry
fn clone(&self) -> BaselineEntry
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 BaselineEntry
impl Debug for BaselineEntry
Source§impl<'de> Deserialize<'de> for BaselineEntry
impl<'de> Deserialize<'de> for BaselineEntry
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 BaselineEntry
impl RefUnwindSafe for BaselineEntry
impl Send for BaselineEntry
impl Sync for BaselineEntry
impl Unpin for BaselineEntry
impl UnwindSafe for BaselineEntry
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