Struct fera_graph::props::DelegateVertexProp [] [src]

pub struct DelegateVertexProp<G: WithVertexProp<T>, T>(_);

A vertex property that delegates all operations to a wrapped property.

Trait Implementations

impl<G: WithVertexProp<T>, T> Index<Vertex<G>> for DelegateVertexProp<G, T>
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl<G: WithVertexProp<T>, T> IndexMut<Vertex<G>> for DelegateVertexProp<G, T>
[src]

[src]

Performs the mutable indexing (container[index]) operation.

impl<G, D, T> VertexPropMutNew<G, T> for DelegateVertexProp<D, T> where
    G: WithVertex<Vertex = Vertex<D>, OptionVertex = OptionVertex<D>> + AsRef<D>,
    D: WithVertexProp<T>, 
[src]

[src]

Creates a new vertex prop. Read more