pub struct DiffJsonEnvelope<'a> {
pub schema: &'static str,
pub ok: bool,
pub generated_at: String,
pub command: &'static str,
pub sources: DiffSources<'a>,
pub summary: DiffSummary,
pub diff: &'a DiffResult,
}Fields§
§schema: &'static str§ok: bool§generated_at: String§command: &'static str§sources: DiffSources<'a>§summary: DiffSummary§diff: &'a DiffResultTrait Implementations§
Source§impl<'a> Debug for DiffJsonEnvelope<'a>
impl<'a> Debug for DiffJsonEnvelope<'a>
Auto Trait Implementations§
impl<'a> Freeze for DiffJsonEnvelope<'a>
impl<'a> RefUnwindSafe for DiffJsonEnvelope<'a>
impl<'a> Send for DiffJsonEnvelope<'a>
impl<'a> Sync for DiffJsonEnvelope<'a>
impl<'a> Unpin for DiffJsonEnvelope<'a>
impl<'a> UnsafeUnpin for DiffJsonEnvelope<'a>
impl<'a> UnwindSafe for DiffJsonEnvelope<'a>
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