pub trait NetworkAttributes: Attributes {
    type BiEdgeAttr;

    fn biedge(&self, e: Self::Edge) -> &Self::BiEdgeAttr;
    fn biedge_mut(&mut self, e: Self::Edge) -> &mut Self::BiEdgeAttr;
}
Expand description

This trait provides (mutable) access to the attributes of a network.

A structure implementing this trait is returned as the second value by the split method of an attributed network.

Required Associated Types

Type of biedge attributes.

Required Methods

Return the attributes of a biedge.

Return the attributes of a biedge.

Implementors