pub enum Diff<R, P> {
None,
Delete,
Patch(P),
Replace(R),
Merge(R),
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<R, P> Freeze for Diff<R, P>
impl<R, P> RefUnwindSafe for Diff<R, P>where
P: RefUnwindSafe,
R: RefUnwindSafe,
impl<R, P> Send for Diff<R, P>
impl<R, P> Sync for Diff<R, P>
impl<R, P> Unpin for Diff<R, P>
impl<R, P> UnwindSafe for Diff<R, P>where
P: UnwindSafe,
R: UnwindSafe,
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