pub struct MatchPair {
pub left: NodeId,
pub right: NodeId,
pub score: usize,
}Expand description
A matched pair of nodes across two revisions.
Fields§
§left: NodeId§right: NodeId§score: usizeTrait Implementations§
impl Eq for MatchPair
impl StructuralPartialEq for MatchPair
Auto Trait Implementations§
impl Freeze for MatchPair
impl RefUnwindSafe for MatchPair
impl Send for MatchPair
impl Sync for MatchPair
impl Unpin for MatchPair
impl UnwindSafe for MatchPair
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