pub struct CachedPath {
pub start: (usize, usize),
pub goal: (usize, usize),
pub path: Vec<(usize, usize)>,
pub version: u64,
}Expand description
A cached path entry.
Fields§
§start: (usize, usize)§goal: (usize, usize)§path: Vec<(usize, usize)>§version: u64Trait Implementations§
Source§impl Clone for CachedPath
impl Clone for CachedPath
Source§fn clone(&self) -> CachedPath
fn clone(&self) -> CachedPath
Returns a duplicate of the value. Read more
1.0.0 · 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 CachedPath
impl RefUnwindSafe for CachedPath
impl Send for CachedPath
impl Sync for CachedPath
impl Unpin for CachedPath
impl UnsafeUnpin for CachedPath
impl UnwindSafe for CachedPath
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