struct Edge<F, C> {
to: usize,
cap: F,
cost: C,
}Fields§
§to: usize§cap: F§cost: CTrait Implementations§
Auto Trait Implementations§
impl<F, C> Freeze for Edge<F, C>
impl<F, C> RefUnwindSafe for Edge<F, C>where
F: RefUnwindSafe,
C: RefUnwindSafe,
impl<F, C> Send for Edge<F, C>
impl<F, C> Sync for Edge<F, C>
impl<F, C> Unpin for Edge<F, C>
impl<F, C> UnwindSafe for Edge<F, C>where
F: UnwindSafe,
C: 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