[][src]Struct rs_graph::attributed::GraphAttrs

pub struct GraphAttrs<'a, G, Gx, Nx, Ex> where
    G: 'a + GraphType<'a>,
    Gx: 'a,
    Nx: 'a,
    Ex: 'a, 
{ /* fields omitted */ }
Deprecated since 0.17.0:

use rs-graph-derive crate instead

Accessor for graph attributes.

Trait Implementations

impl<'a, G, Gx, Nx, Ex> Attributes for GraphAttrs<'a, G, Gx, Nx, Ex> where
    G: IndexGraph<'a>, 
[src]

type Node = G::Node

Deprecated since 0.17.0:

use rs-graph-derive crate instead

Type of nodes of the associated graph.

type Edge = G::Edge

Deprecated since 0.17.0:

use rs-graph-derive crate instead

Type of edges of the associated graph.

type GraphAttr = Gx

Deprecated since 0.17.0:

use rs-graph-derive crate instead

Type of graph attributes.

type NodeAttr = Nx

Deprecated since 0.17.0:

use rs-graph-derive crate instead

Type of node attributes.

type EdgeAttr = Ex

Deprecated since 0.17.0:

use rs-graph-derive crate instead

Type of edge attributes.

impl<'a, G, Gx, Nx, Ex> Deref for GraphAttrs<'a, G, Gx, Nx, Ex> where
    G: IndexGraph<'a>, 
[src]

type Target = Gx

The resulting type after dereferencing.

impl<'a, G, Gx, Nx, Ex> DerefMut for GraphAttrs<'a, G, Gx, Nx, Ex> where
    G: IndexGraph<'a>, 
[src]

Auto Trait Implementations

impl<'a, G, Gx, Nx, Ex> RefUnwindSafe for GraphAttrs<'a, G, Gx, Nx, Ex> where
    Ex: RefUnwindSafe,
    G: RefUnwindSafe,
    Gx: RefUnwindSafe,
    Nx: RefUnwindSafe

impl<'a, G, Gx, Nx, Ex> Send for GraphAttrs<'a, G, Gx, Nx, Ex> where
    Ex: Send,
    G: Sync,
    Gx: Send,
    Nx: Send

impl<'a, G, Gx, Nx, Ex> Sync for GraphAttrs<'a, G, Gx, Nx, Ex> where
    Ex: Sync,
    G: Sync,
    Gx: Sync,
    Nx: Sync

impl<'a, G, Gx, Nx, Ex> Unpin for GraphAttrs<'a, G, Gx, Nx, Ex>

impl<'a, G, Gx, Nx, Ex> !UnwindSafe for GraphAttrs<'a, G, Gx, Nx, Ex>

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.