pub struct BiDijkstraOutput {
pub dist: f64,
pub path: Vec<usize>,
}Fields§
§dist: f64§path: Vec<usize>Trait Implementations§
Source§impl Clone for BiDijkstraOutput
impl Clone for BiDijkstraOutput
Source§fn clone(&self) -> BiDijkstraOutput
fn clone(&self) -> BiDijkstraOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BiDijkstraOutput
impl RefUnwindSafe for BiDijkstraOutput
impl Send for BiDijkstraOutput
impl Sync for BiDijkstraOutput
impl Unpin for BiDijkstraOutput
impl UnsafeUnpin for BiDijkstraOutput
impl UnwindSafe for BiDijkstraOutput
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