Trait rs_graph::attributed::NetworkAttributes [] [src]

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; }

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.

Associated Types

Type of biedge attributes.

Required Methods

Return the attributes of a biedge.

Return the attributes of a biedge.

Implementors