pub struct Matching {
pub pairs: Vec<(usize, usize)>,
pub size: usize,
}Expand description
Matching result
Fields§
§pairs: Vec<(usize, usize)>Matched pairs (node_a, node_b)
size: usizeSize of matching
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Matching
impl RefUnwindSafe for Matching
impl Send for Matching
impl Sync for Matching
impl Unpin for Matching
impl UnsafeUnpin for Matching
impl UnwindSafe for Matching
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