pub struct AStarInspection {
pub result: SearchResult,
pub diagnostics: AStarDiagnostics,
}Expand description
A* search result paired with AStarDiagnostics from one instrumented run.
Fields§
§result: SearchResultStandard found/no-path or invalid/budget result.
diagnostics: AStarDiagnosticsOpen-set and relaxation tallies for this inspect run.
Trait Implementations§
Source§impl Clone for AStarInspection
impl Clone for AStarInspection
Source§fn clone(&self) -> AStarInspection
fn clone(&self) -> AStarInspection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AStarInspection
impl Debug for AStarInspection
impl Eq for AStarInspection
Source§impl PartialEq for AStarInspection
impl PartialEq for AStarInspection
impl StructuralPartialEq for AStarInspection
Auto Trait Implementations§
impl Freeze for AStarInspection
impl RefUnwindSafe for AStarInspection
impl Send for AStarInspection
impl Sync for AStarInspection
impl Unpin for AStarInspection
impl UnsafeUnpin for AStarInspection
impl UnwindSafe for AStarInspection
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