Struct petgraph::graph::Edge [−][src]
pub struct Edge<E, Ix = DefaultIx> {
pub weight: E,
// some fields omitted
}
Expand description
The graph’s edge type.
Fields
weight: E
Associated edge data.
Implementations
Trait Implementations
Auto Trait Implementations
impl<E, Ix> RefUnwindSafe for Edge<E, Ix> where
E: RefUnwindSafe,
Ix: RefUnwindSafe,
impl<E, Ix> UnwindSafe for Edge<E, Ix> where
E: UnwindSafe,
Ix: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more