pub struct BaselineDiff {
pub added: Vec<String>,
pub removed: Vec<String>,
pub changed: Vec<ChangedEntry>,
}Expand description
Line-oriented comparison of two baselines.
Fields§
§added: Vec<String>§removed: Vec<String>§changed: Vec<ChangedEntry>Implementations§
Trait Implementations§
Source§impl Clone for BaselineDiff
impl Clone for BaselineDiff
Source§fn clone(&self) -> BaselineDiff
fn clone(&self) -> BaselineDiff
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 BaselineDiff
impl Debug for BaselineDiff
Source§impl Default for BaselineDiff
impl Default for BaselineDiff
Source§fn default() -> BaselineDiff
fn default() -> BaselineDiff
Returns the “default value” for a type. Read more
Source§impl Display for BaselineDiff
impl Display for BaselineDiff
impl Eq for BaselineDiff
Source§impl PartialEq for BaselineDiff
impl PartialEq for BaselineDiff
impl StructuralPartialEq for BaselineDiff
Auto Trait Implementations§
impl Freeze for BaselineDiff
impl RefUnwindSafe for BaselineDiff
impl Send for BaselineDiff
impl Sync for BaselineDiff
impl Unpin for BaselineDiff
impl UnsafeUnpin for BaselineDiff
impl UnwindSafe for BaselineDiff
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