pub struct Traversal {
pub src: String,
pub edge_name: String,
pub dst: String,
pub min_hops: u32,
pub max_hops: Option<u32>,
}Fields§
§src: String§edge_name: String§dst: String§min_hops: u32§max_hops: Option<u32>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Traversal
impl RefUnwindSafe for Traversal
impl Send for Traversal
impl Sync for Traversal
impl Unpin for Traversal
impl UnsafeUnpin for Traversal
impl UnwindSafe for Traversal
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