pub struct DijkstraSearchResults<T>where
T: DijkstraNode,{ /* private fields */ }
Implementations§
Source§impl<T: DijkstraNode> DijkstraSearchResults<T>
impl<T: DijkstraNode> DijkstraSearchResults<T>
Sourcepub fn incomplete(&self) -> bool
pub fn incomplete(&self) -> bool
Whether the path contained is incomplete
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for DijkstraSearchResults<T>
impl<T> RefUnwindSafe for DijkstraSearchResults<T>where
T: RefUnwindSafe,
impl<T> Send for DijkstraSearchResults<T>where
T: Send,
impl<T> Sync for DijkstraSearchResults<T>where
T: Sync,
impl<T> Unpin for DijkstraSearchResults<T>where
T: Unpin,
impl<T> UnwindSafe for DijkstraSearchResults<T>where
T: UnwindSafe,
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