pub struct StableGraphEdge<E, Ix> {
pub index: EdgeIndex<Ix>,
pub source: NodeIndex<Ix>,
pub target: NodeIndex<Ix>,
pub weight: E,
}
Fields§
§index: EdgeIndex<Ix>
§source: NodeIndex<Ix>
§target: NodeIndex<Ix>
§weight: E
Trait Implementations§
Source§impl<E, Ix> Clone for StableGraphEdge<E, Ix>
impl<E, Ix> Clone for StableGraphEdge<E, Ix>
Auto Trait Implementations§
impl<E, Ix> Freeze for StableGraphEdge<E, Ix>
impl<E, Ix> RefUnwindSafe for StableGraphEdge<E, Ix>where
E: RefUnwindSafe,
Ix: RefUnwindSafe,
impl<E, Ix> Send for StableGraphEdge<E, Ix>
impl<E, Ix> Sync for StableGraphEdge<E, Ix>
impl<E, Ix> Unpin for StableGraphEdge<E, Ix>
impl<E, Ix> UnwindSafe for StableGraphEdge<E, Ix>where
E: UnwindSafe,
Ix: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more