Enum controlled_astar::astar::AStarError
source · pub enum AStarError {
StartNodeBlocked((usize, usize)),
GoalNodeBlocked((usize, usize)),
NodeNotFound((usize, usize)),
PathNotFound((usize, usize)),
}
Expand description
Error types that can occur during A* pathfinding.
Variants§
StartNodeBlocked((usize, usize))
GoalNodeBlocked((usize, usize))
NodeNotFound((usize, usize))
PathNotFound((usize, usize))
Trait Implementations§
source§impl Debug for AStarError
impl Debug for AStarError
Auto Trait Implementations§
impl Freeze for AStarError
impl RefUnwindSafe for AStarError
impl Send for AStarError
impl Sync for AStarError
impl Unpin for AStarError
impl UnwindSafe for AStarError
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