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