Struct fera_graph::props::DelegateEdgeProp [] [src]

pub struct DelegateEdgeProp<G: WithEdgeProp<T>, T>(_);

An edge property that delegates all operations to a wrapped property.

Trait Implementations

impl<G: WithEdgeProp<T>, T> Index<Edge<G>> for DelegateEdgeProp<G, T>
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl<G: WithEdgeProp<T>, T> IndexMut<Edge<G>> for DelegateEdgeProp<G, T>
[src]

[src]

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

impl<G, D, T> EdgePropMutNew<G, T> for DelegateEdgeProp<D, T> where
    G: WithEdge<Edge = Edge<D>, OptionEdge = OptionEdge<D>> + AsRef<D>,
    D: WithEdgeProp<T>, 
[src]

[src]

Creates a new edge prop. Read more