pub struct NodeFiltered<G, F>(pub G, pub F);
Expand description

A node-filtering graph adaptor.

Tuple Fields§

§0: G§1: F

Implementations§

source§

impl<F, G> NodeFiltered<G, F>where G: GraphBase, F: Fn(G::NodeId) -> bool,

source

pub fn from_fn(graph: G, filter: F) -> Self

Create an NodeFiltered adaptor from the closure filter.

Trait Implementations§

source§

impl<G: Clone, F: Clone> Clone for NodeFiltered<G, F>

source§

fn clone(&self) -> NodeFiltered<G, F>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<G, F> Data for NodeFiltered<G, F>where G: Data,

source§

impl<G, F> DataMap for NodeFiltered<G, F>where G: DataMap, F: FilterNode<G::NodeId>,

source§

fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight>

source§

fn edge_weight(&self, id: Self::EdgeId) -> Option<&Self::EdgeWeight>

source§

impl<G: Debug, F: Debug> Debug for NodeFiltered<G, F>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<G, F> EdgeIndexable for NodeFiltered<G, F>where G: EdgeIndexable,

source§

fn edge_bound(&self) -> usize

Return an upper bound of the edge indices in the graph (suitable for the size of a bitmap).
source§

fn to_index(&self, a: Self::EdgeId) -> usize

Convert a to an integer index.
source§

fn from_index(&self, i: usize) -> Self::EdgeId

Convert i to an edge index. i must be a valid value in the graph.
source§

impl<G, F> GraphBase for NodeFiltered<G, F>where G: GraphBase,

§

type NodeId = <G as GraphBase>::NodeId

node identifier
§

type EdgeId = <G as GraphBase>::EdgeId

edge identifier
source§

impl<G, F> GraphProp for NodeFiltered<G, F>where G: GraphProp,

§

type EdgeType = <G as GraphProp>::EdgeType

The kind of edges in the graph.
source§

fn is_directed(&self) -> bool

source§

impl<'a, G, F> IntoEdgeReferences for &'a NodeFiltered<G, F>where G: IntoEdgeReferences, F: FilterNode<G::NodeId>,

source§

impl<'a, G, F> IntoEdges for &'a NodeFiltered<G, F>where G: IntoEdges, F: FilterNode<G::NodeId>,

§

type Edges = NodeFilteredEdges<'a, G, <G as IntoEdges>::Edges, F>

source§

fn edges(self, a: G::NodeId) -> Self::Edges

source§

impl<'a, G, F> IntoEdgesDirected for &'a NodeFiltered<G, F>where G: IntoEdgesDirected, F: FilterNode<G::NodeId>,

source§

impl<'a, G, F> IntoNeighbors for &'a NodeFiltered<G, F>where G: IntoNeighbors, F: FilterNode<G::NodeId>,

§

type Neighbors = NodeFilteredNeighbors<'a, <G as IntoNeighbors>::Neighbors, F>

source§

fn neighbors(self, n: G::NodeId) -> Self::Neighbors

Return an iterator of the neighbors of node a.
source§

impl<'a, G, F> IntoNeighborsDirected for &'a NodeFiltered<G, F>where G: IntoNeighborsDirected, F: FilterNode<G::NodeId>,

source§

impl<'a, G, F> IntoNodeIdentifiers for &'a NodeFiltered<G, F>where G: IntoNodeIdentifiers, F: FilterNode<G::NodeId>,

source§

impl<'a, G, F> IntoNodeReferences for &'a NodeFiltered<G, F>where G: IntoNodeReferences, F: FilterNode<G::NodeId>,

source§

impl<G, F> NodeIndexable for NodeFiltered<G, F>where G: NodeIndexable,

source§

fn node_bound(&self) -> usize

Return an upper bound of the node indices in the graph (suitable for the size of a bitmap).
source§

fn to_index(&self, a: Self::NodeId) -> usize

Convert a to an integer index.
source§

fn from_index(&self, i: usize) -> Self::NodeId

Convert i to a node index. i must be a valid value in the graph.
source§

impl<G, F> Visitable for NodeFiltered<G, F>where G: Visitable,

§

type Map = <G as Visitable>::Map

The associated map type
source§

fn visit_map(&self) -> Self::Map

Create a new visitor map
source§

fn reset_map(&self, map: &mut Self::Map)

Reset the visitor map (and resize to new size of graph if needed)
source§

impl<G: Copy, F: Copy> Copy for NodeFiltered<G, F>

Auto Trait Implementations§

§

impl<G, F> RefUnwindSafe for NodeFiltered<G, F>where F: RefUnwindSafe, G: RefUnwindSafe,

§

impl<G, F> Send for NodeFiltered<G, F>where F: Send, G: Send,

§

impl<G, F> Sync for NodeFiltered<G, F>where F: Sync, G: Sync,

§

impl<G, F> Unpin for NodeFiltered<G, F>where F: Unpin, G: Unpin,

§

impl<G, F> UnwindSafe for NodeFiltered<G, F>where F: UnwindSafe, G: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.