Struct petgraph::visit::NodeFiltered [−][src]
pub struct NodeFiltered<G, F>(pub G, pub F);
Expand description
A node-filtering graph adaptor.
Implementations
impl<F, G> NodeFiltered<G, F> where
G: GraphBase,
F: Fn(G::NodeId) -> bool, [src]
impl<F, G> NodeFiltered<G, F> where
G: GraphBase,
F: Fn(G::NodeId) -> bool, [src]Trait Implementations
impl<G: Clone, F: Clone> Clone for NodeFiltered<G, F>[src]
impl<G: Clone, F: Clone> Clone for NodeFiltered<G, F>[src]fn clone(&self) -> NodeFiltered<G, F>[src]
fn clone(&self) -> NodeFiltered<G, F>[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl<G, F> Data for NodeFiltered<G, F> where
G: Data, [src]
impl<G, F> Data for NodeFiltered<G, F> where
G: Data, [src]type NodeWeight = G::NodeWeight
type EdgeWeight = G::EdgeWeight
impl<G, F> DataMap for NodeFiltered<G, F> where
G: DataMap,
F: FilterNode<G::NodeId>, [src]
impl<G, F> DataMap for NodeFiltered<G, F> where
G: DataMap,
F: FilterNode<G::NodeId>, [src]fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight>[src]
fn edge_weight(&self, id: Self::EdgeId) -> Option<&Self::EdgeWeight>[src]
impl<G: Debug, F: Debug> Debug for NodeFiltered<G, F>[src]
impl<G: Debug, F: Debug> Debug for NodeFiltered<G, F>[src]impl<G, F> GraphBase for NodeFiltered<G, F> where
G: GraphBase, [src]
impl<G, F> GraphBase for NodeFiltered<G, F> where
G: GraphBase, [src]impl<G, F> GraphProp for NodeFiltered<G, F> where
G: GraphProp, [src]
impl<G, F> GraphProp for NodeFiltered<G, F> where
G: GraphProp, [src]fn is_directed(&self) -> bool[src]
impl<'a, G, F> IntoEdgeReferences for &'a NodeFiltered<G, F> where
G: IntoEdgeReferences,
F: FilterNode<G::NodeId>, [src]
impl<'a, G, F> IntoEdgeReferences for &'a NodeFiltered<G, F> where
G: IntoEdgeReferences,
F: FilterNode<G::NodeId>, [src]type EdgeRef = G::EdgeRef
type EdgeReferences = NodeFilteredEdgeReferences<'a, G, G::EdgeReferences, F>
fn edge_references(self) -> Self::EdgeReferences[src]
impl<'a, G, F> IntoEdges for &'a NodeFiltered<G, F> where
G: IntoEdges,
F: FilterNode<G::NodeId>, [src]
impl<'a, G, F> IntoEdges for &'a NodeFiltered<G, F> where
G: IntoEdges,
F: FilterNode<G::NodeId>, [src]impl<'a, G, F> IntoNeighbors for &'a NodeFiltered<G, F> where
G: IntoNeighbors,
F: FilterNode<G::NodeId>, [src]
impl<'a, G, F> IntoNeighbors for &'a NodeFiltered<G, F> where
G: IntoNeighbors,
F: FilterNode<G::NodeId>, [src]impl<'a, G, F> IntoNeighborsDirected for &'a NodeFiltered<G, F> where
G: IntoNeighborsDirected,
F: FilterNode<G::NodeId>, [src]
impl<'a, G, F> IntoNeighborsDirected for &'a NodeFiltered<G, F> where
G: IntoNeighborsDirected,
F: FilterNode<G::NodeId>, [src]type NeighborsDirected = NodeFilteredNeighbors<'a, G::NeighborsDirected, F>
fn neighbors_directed(
self,
n: G::NodeId,
dir: Direction
) -> Self::NeighborsDirected[src]
self,
n: G::NodeId,
dir: Direction
) -> Self::NeighborsDirected
impl<'a, G, F> IntoNodeIdentifiers for &'a NodeFiltered<G, F> where
G: IntoNodeIdentifiers,
F: FilterNode<G::NodeId>, [src]
impl<'a, G, F> IntoNodeIdentifiers for &'a NodeFiltered<G, F> where
G: IntoNodeIdentifiers,
F: FilterNode<G::NodeId>, [src]type NodeIdentifiers = NodeFilteredNeighbors<'a, G::NodeIdentifiers, F>
fn node_identifiers(self) -> Self::NodeIdentifiers[src]
impl<'a, G, F> IntoNodeReferences for &'a NodeFiltered<G, F> where
G: IntoNodeReferences,
F: FilterNode<G::NodeId>, [src]
impl<'a, G, F> IntoNodeReferences for &'a NodeFiltered<G, F> where
G: IntoNodeReferences,
F: FilterNode<G::NodeId>, [src]type NodeRef = G::NodeRef
type NodeReferences = NodeFilteredNodes<'a, G::NodeReferences, F>
fn node_references(self) -> Self::NodeReferences[src]
impl<G, F> NodeIndexable for NodeFiltered<G, F> where
G: NodeIndexable, [src]
impl<G, F> NodeIndexable for NodeFiltered<G, F> where
G: NodeIndexable, [src]impl<G, F> Visitable for NodeFiltered<G, F> where
G: Visitable, [src]
impl<G, F> Visitable for NodeFiltered<G, F> where
G: Visitable, [src]impl<G: Copy, F: Copy> Copy for NodeFiltered<G, F>[src]
Auto Trait Implementations
impl<G, F> RefUnwindSafe for NodeFiltered<G, F> where
F: RefUnwindSafe,
G: RefUnwindSafe,
F: RefUnwindSafe,
G: RefUnwindSafe,
impl<G, F> Send for NodeFiltered<G, F> where
F: Send,
G: Send,
F: Send,
G: Send,
impl<G, F> Sync for NodeFiltered<G, F> where
F: Sync,
G: Sync,
F: Sync,
G: Sync,
impl<G, F> Unpin for NodeFiltered<G, F> where
F: Unpin,
G: Unpin,
F: Unpin,
G: Unpin,
impl<G, F> UnwindSafe for NodeFiltered<G, F> where
F: UnwindSafe,
G: UnwindSafe,
F: UnwindSafe,
G: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more