Struct petgraph::visit::EdgeFiltered
[−]
[src]
pub struct EdgeFiltered<G, F>(pub G, pub F);
An edge-filtering graph adaptor.
The adaptor may filter out edges. The filter implements the trait
FilterEdge
. Closures of type Fn(G::EdgeRef) -> bool
already
implement this trait.
The filter may use edge source, target, id, and weight to select whether to include the edge or not.
Methods
impl<F, G> EdgeFiltered<G, F> where
G: IntoEdgeReferences,
F: Fn(G::EdgeRef) -> bool,
[src]
G: IntoEdgeReferences,
F: Fn(G::EdgeRef) -> bool,
pub fn from_fn(graph: G, filter: F) -> Self
[src]
Create an EdgeFiltered
adaptor from the closure filter
.
Trait Implementations
impl<G: Copy, F: Copy> Copy for EdgeFiltered<G, F>
[src]
impl<G: Clone, F: Clone> Clone for EdgeFiltered<G, F>
[src]
fn clone(&self) -> EdgeFiltered<G, F>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<G: Debug, F: Debug> Debug for EdgeFiltered<G, F>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<G, F> GraphBase for EdgeFiltered<G, F> where
G: GraphBase,
[src]
G: GraphBase,
impl<'a, G, F> IntoNeighbors for &'a EdgeFiltered<G, F> where
G: IntoEdges,
F: FilterEdge<G::EdgeRef>,
[src]
G: IntoEdges,
F: FilterEdge<G::EdgeRef>,
type Neighbors = EdgeFilteredNeighbors<'a, G, F>
fn neighbors(self, n: G::NodeId) -> Self::Neighbors
[src]
Return an iterator of the neighbors of node a
.
impl<'a, G, F> IntoEdgeReferences for &'a EdgeFiltered<G, F> where
G: IntoEdgeReferences,
F: FilterEdge<G::EdgeRef>,
[src]
G: IntoEdgeReferences,
F: FilterEdge<G::EdgeRef>,
type EdgeRef = G::EdgeRef
type EdgeReferences = EdgeFilteredEdges<'a, G, G::EdgeReferences, F>
fn edge_references(self) -> Self::EdgeReferences
[src]
impl<'a, G, F> IntoEdges for &'a EdgeFiltered<G, F> where
G: IntoEdges,
F: FilterEdge<G::EdgeRef>,
[src]
G: IntoEdges,
F: FilterEdge<G::EdgeRef>,
impl<G, F> Data for EdgeFiltered<G, F> where
G: Data,
[src]
G: Data,
type NodeWeight = G::NodeWeight
type EdgeWeight = G::EdgeWeight
impl<G, F> GraphProp for EdgeFiltered<G, F> where
G: GraphProp,
[src]
G: GraphProp,
impl<'a, G, F> IntoNodeIdentifiers for &'a EdgeFiltered<G, F> where
G: IntoNodeIdentifiers,
[src]
G: IntoNodeIdentifiers,
type NodeIdentifiers = G::NodeIdentifiers
fn node_identifiers(self) -> Self::NodeIdentifiers
[src]
impl<'a, G, F> IntoNodeReferences for &'a EdgeFiltered<G, F> where
G: IntoNodeReferences,
[src]
G: IntoNodeReferences,
type NodeRef = G::NodeRef
type NodeReferences = G::NodeReferences
fn node_references(self) -> Self::NodeReferences
[src]
impl<G, F> NodeCompactIndexable for EdgeFiltered<G, F> where
G: NodeCompactIndexable,
[src]
G: NodeCompactIndexable,
impl<G, F> NodeCount for EdgeFiltered<G, F> where
G: NodeCount,
[src]
G: NodeCount,
fn node_count(&self) -> usize
[src]
impl<G, F> NodeIndexable for EdgeFiltered<G, F> where
G: NodeIndexable,
[src]
G: NodeIndexable,
fn node_bound(&self) -> usize
[src]
Return an upper bound of the node indices in the graph (suitable for the size of a bitmap). Read more
fn to_index(&self, a: Self::NodeId) -> usize
[src]
Convert a
to an integer index.
fn from_index(&self, i: usize) -> Self::NodeId
[src]
Convert i
to a node index
impl<G, F> Visitable for EdgeFiltered<G, F> where
G: Visitable,
[src]
G: Visitable,