[][src]Struct rs_graph::adjacencies::FilterAdjacencies

pub struct FilterAdjacencies<A, P>(_, _);

Trait Implementations

impl<'a, A, P> Adjacencies<'a> for FilterAdjacencies<A, P> where
    A: Adjacencies<'a>,
    P: 'a + Clone + for<'r> Fn(&'r (A::Edge, A::Node)) -> bool
[src]

type Incidence = Filtered<A::Incidence>

impl<'a, A, P> GraphType<'a> for FilterAdjacencies<A, P> where
    A: Adjacencies<'a>, 
[src]

type Node = A::Node

Type of a node.

type Edge = A::Edge

Type of an edge.

Auto Trait Implementations

impl<A, P> RefUnwindSafe for FilterAdjacencies<A, P> where
    A: RefUnwindSafe,
    P: RefUnwindSafe

impl<A, P> Send for FilterAdjacencies<A, P> where
    A: Send,
    P: Send

impl<A, P> Sync for FilterAdjacencies<A, P> where
    A: Sync,
    P: Sync

impl<A, P> Unpin for FilterAdjacencies<A, P> where
    A: Unpin,
    P: Unpin

impl<A, P> UnwindSafe for FilterAdjacencies<A, P> where
    A: UnwindSafe,
    P: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.