pub struct DiffOutput {
pub text: String,
pub differs: bool,
}Expand description
Rendered diff output plus the verdict for the exit code.
Fields§
§text: StringHuman-readable report text.
differs: boolTrue when any common tick differs.
Auto Trait Implementations§
impl Freeze for DiffOutput
impl RefUnwindSafe for DiffOutput
impl Send for DiffOutput
impl Sync for DiffOutput
impl Unpin for DiffOutput
impl UnsafeUnpin for DiffOutput
impl UnwindSafe for DiffOutput
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