pub struct LadSubisomorphism {
pub iso: bool,
pub map: Vec<u32>,
}Expand description
Result of a first-solution LAD subgraph-isomorphism search
(subisomorphic_lad).
Fields§
§iso: boolWhether pattern is isomorphic to a subgraph of target.
map: Vec<u32>For each pattern vertex (in id order), the matched target vertex. Empty when no embedding exists.
Trait Implementations§
Source§impl Clone for LadSubisomorphism
impl Clone for LadSubisomorphism
Source§fn clone(&self) -> LadSubisomorphism
fn clone(&self) -> LadSubisomorphism
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 moreAuto Trait Implementations§
impl Freeze for LadSubisomorphism
impl RefUnwindSafe for LadSubisomorphism
impl Send for LadSubisomorphism
impl Sync for LadSubisomorphism
impl Unpin for LadSubisomorphism
impl UnsafeUnpin for LadSubisomorphism
impl UnwindSafe for LadSubisomorphism
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