pub struct SubgraphMapping {
pub vertex_map: HashMap<VertexId, VertexId>,
pub edge_map: HashMap<EdgeId, EdgeId>,
}Expand description
部分グラフマッピング
Fields§
§vertex_map: HashMap<VertexId, VertexId>パターン頂点 → データグラフ頂点 のマッピング
edge_map: HashMap<EdgeId, EdgeId>パターンエッジ → データグラフエッジ のマッピング
Trait Implementations§
Source§impl Clone for SubgraphMapping
impl Clone for SubgraphMapping
Source§fn clone(&self) -> SubgraphMapping
fn clone(&self) -> SubgraphMapping
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 SubgraphMapping
impl RefUnwindSafe for SubgraphMapping
impl Send for SubgraphMapping
impl Sync for SubgraphMapping
impl Unpin for SubgraphMapping
impl UnwindSafe for SubgraphMapping
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