Trait fera_graph::props::EdgePropMutNew [] [src]

pub trait EdgePropMutNew<G, T>: EdgePropMut<G, T> where
    G: WithEdge
{ fn new_edge_prop(g: &G, value: T) -> Self
    where
        T: Clone
; }

An edge property that can be read/write using indexing operation.

Required Methods

Creates a new edge prop.

This method is rarely called explicitly, it is instead used through WithEdge::edge_prop.

Implementors