pub struct DiffReport {
pub output: PathBuf,
pub exists: bool,
pub up_to_date: bool,
pub diff: String,
}Fields§
§output: PathBuf§exists: bool§up_to_date: bool§diff: StringTrait Implementations§
Source§impl Clone for DiffReport
impl Clone for DiffReport
Source§fn clone(&self) -> DiffReport
fn clone(&self) -> DiffReport
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 DiffReport
impl Debug for DiffReport
Source§impl PartialEq for DiffReport
impl PartialEq for DiffReport
Source§fn eq(&self, other: &DiffReport) -> bool
fn eq(&self, other: &DiffReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DiffReport
impl StructuralPartialEq for DiffReport
Auto Trait Implementations§
impl Freeze for DiffReport
impl RefUnwindSafe for DiffReport
impl Send for DiffReport
impl Sync for DiffReport
impl Unpin for DiffReport
impl UnsafeUnpin for DiffReport
impl UnwindSafe for DiffReport
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