pub struct Path<I: NodeId, W: NodeWeight> {
pub weight: W,
pub steps: Vec<I>,
}Fields§
§weight: W§steps: Vec<I>Trait Implementations§
Auto Trait Implementations§
impl<I, W> Freeze for Path<I, W>where
W: Freeze,
impl<I, W> RefUnwindSafe for Path<I, W>where
W: RefUnwindSafe,
I: RefUnwindSafe,
impl<I, W> Send for Path<I, W>
impl<I, W> Sync for Path<I, W>
impl<I, W> Unpin for Path<I, W>
impl<I, W> UnsafeUnpin for Path<I, W>where
W: UnsafeUnpin,
impl<I, W> UnwindSafe for Path<I, W>where
W: UnwindSafe,
I: 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