pub struct AStarOutput {
pub dist: f64,
pub path: Vec<usize>,
}Fields§
§dist: f64§path: Vec<usize>Trait Implementations§
Source§impl Clone for AStarOutput
impl Clone for AStarOutput
Source§fn clone(&self) -> AStarOutput
fn clone(&self) -> AStarOutput
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 AStarOutput
impl RefUnwindSafe for AStarOutput
impl Send for AStarOutput
impl Sync for AStarOutput
impl Unpin for AStarOutput
impl UnsafeUnpin for AStarOutput
impl UnwindSafe for AStarOutput
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