pub struct JsonDiffCalculator { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for JsonDiffCalculator
impl Clone for JsonDiffCalculator
Source§fn clone(&self) -> JsonDiffCalculator
fn clone(&self) -> JsonDiffCalculator
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 moreSource§impl Debug for JsonDiffCalculator
impl Debug for JsonDiffCalculator
Source§impl Default for JsonDiffCalculator
impl Default for JsonDiffCalculator
Source§impl DiffCalculator<FileLeaf> for JsonDiffCalculator
impl DiffCalculator<FileLeaf> for JsonDiffCalculator
impl Copy for JsonDiffCalculator
Auto Trait Implementations§
impl Freeze for JsonDiffCalculator
impl RefUnwindSafe for JsonDiffCalculator
impl Send for JsonDiffCalculator
impl Sync for JsonDiffCalculator
impl Unpin for JsonDiffCalculator
impl UnsafeUnpin for JsonDiffCalculator
impl UnwindSafe for JsonDiffCalculator
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<R, Diff, T, R1, R2> DetailReporter<Diff, T, (R1, R2)> for Rwhere
R: DetailReporter<Diff, T, R1> + DetailReporter<Diff, T, R2>,
impl<R, Diff, T, R1, R2> DetailReporter<Diff, T, (R1, R2)> for Rwhere
R: DetailReporter<Diff, T, R1> + DetailReporter<Diff, T, R2>,
type Error = EitherError<<R as DetailReporter<Diff, T, R1>>::Error, <R as DetailReporter<Diff, T, R2>>::Error>
fn report_unchanged( &self, name: &str, diff: &Diff, _: &(R1, R2), ) -> Result<MayUnsupported<()>, <R as DetailReporter<Diff, T, (R1, R2)>>::Error>
fn report_modified( &self, name: &str, diff: &Diff, _: &(R1, R2), ) -> Result<MayUnsupported<()>, <R as DetailReporter<Diff, T, (R1, R2)>>::Error>
fn report_added( &self, name: &str, data: &T, _: &(R1, R2), ) -> Result<MayUnsupported<()>, <R as DetailReporter<Diff, T, (R1, R2)>>::Error>
fn report_deleted( &self, name: &str, data: &T, _: &(R1, R2), ) -> Result<MayUnsupported<()>, <R as DetailReporter<Diff, T, (R1, R2)>>::Error>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more