pub struct VisualDiffOutput {
pub diff_path: PathBuf,
pub diff_type: VisualDiffType,
}Expand description
Path and type of a visual diff output file.
Fields§
§diff_path: PathBufPath to the written diff file.
diff_type: VisualDiffTypeCategory of visual diff that was rendered.
Trait Implementations§
Source§impl Clone for VisualDiffOutput
impl Clone for VisualDiffOutput
Source§fn clone(&self) -> VisualDiffOutput
fn clone(&self) -> VisualDiffOutput
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 moreAuto Trait Implementations§
impl Freeze for VisualDiffOutput
impl RefUnwindSafe for VisualDiffOutput
impl Send for VisualDiffOutput
impl Sync for VisualDiffOutput
impl Unpin for VisualDiffOutput
impl UnsafeUnpin for VisualDiffOutput
impl UnwindSafe for VisualDiffOutput
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