pub enum SlicedPathState {
InProgress,
Success,
Failed,
PartialPath,
}Expand description
State of a sliced pathfinding query
Variants§
InProgress
Path finding is in progress
Success
Path finding completed successfully
Failed
Path finding failed
PartialPath
Partial path found (couldn’t reach destination)
Trait Implementations§
Source§impl Clone for SlicedPathState
impl Clone for SlicedPathState
Source§fn clone(&self) -> SlicedPathState
fn clone(&self) -> SlicedPathState
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 moreSource§impl Debug for SlicedPathState
impl Debug for SlicedPathState
Source§impl PartialEq for SlicedPathState
impl PartialEq for SlicedPathState
impl Copy for SlicedPathState
impl Eq for SlicedPathState
impl StructuralPartialEq for SlicedPathState
Auto Trait Implementations§
impl Freeze for SlicedPathState
impl RefUnwindSafe for SlicedPathState
impl Send for SlicedPathState
impl Sync for SlicedPathState
impl Unpin for SlicedPathState
impl UnsafeUnpin for SlicedPathState
impl UnwindSafe for SlicedPathState
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