pub struct Differ<L, R> { /* private fields */ }Implementations§
Source§impl<'left, 'right, L, R> Differ<L, R>where
L: SymbolMapWithContent<'left>,
R: SymbolMapWithContent<'right>,
impl<'left, 'right, L, R> Differ<L, R>where
L: SymbolMapWithContent<'left>,
R: SymbolMapWithContent<'right>,
pub fn new(left: L, right: R) -> Self
pub fn symbol_map(&self) -> SymbolMapping
pub fn build_diff(&self, mapping: &SymbolMapping) -> DiffResult
pub fn debug_diff(&self, diff: &DiffResult)
Auto Trait Implementations§
impl<L, R> Freeze for Differ<L, R>
impl<L, R> RefUnwindSafe for Differ<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for Differ<L, R>
impl<L, R> Sync for Differ<L, R>
impl<L, R> Unpin for Differ<L, R>
impl<L, R> UnsafeUnpin for Differ<L, R>where
L: UnsafeUnpin,
R: UnsafeUnpin,
impl<L, R> UnwindSafe for Differ<L, R>where
L: 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