pub struct Reached {
pub node: Node,
pub depth: usize,
pub via: Edge,
}Expand description
One step of a traversal result: the node reached, how deep, and the edge that reached it.
Fields§
§node: Node§depth: usize§via: EdgeAuto Trait Implementations§
impl Freeze for Reached
impl RefUnwindSafe for Reached
impl Send for Reached
impl Sync for Reached
impl Unpin for Reached
impl UnsafeUnpin for Reached
impl UnwindSafe for Reached
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