pub struct BaselineComparison {
pub added: Vec<String>,
pub modified: Vec<String>,
pub removed: Vec<String>,
}Expand description
Result of comparing a current scan against a stored baseline.
Fields§
§added: Vec<String>§modified: Vec<String>§removed: Vec<String>Trait Implementations§
Source§impl Clone for BaselineComparison
impl Clone for BaselineComparison
Source§fn clone(&self) -> BaselineComparison
fn clone(&self) -> BaselineComparison
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BaselineComparison
impl Debug for BaselineComparison
Source§impl Default for BaselineComparison
impl Default for BaselineComparison
Source§fn default() -> BaselineComparison
fn default() -> BaselineComparison
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BaselineComparison
impl<'de> Deserialize<'de> for BaselineComparison
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 BaselineComparison
impl PartialEq for BaselineComparison
Source§fn eq(&self, other: &BaselineComparison) -> bool
fn eq(&self, other: &BaselineComparison) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BaselineComparison
impl Serialize for BaselineComparison
impl StructuralPartialEq for BaselineComparison
Auto Trait Implementations§
impl Freeze for BaselineComparison
impl RefUnwindSafe for BaselineComparison
impl Send for BaselineComparison
impl Sync for BaselineComparison
impl Unpin for BaselineComparison
impl UnsafeUnpin for BaselineComparison
impl UnwindSafe for BaselineComparison
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