pub struct SolvePath {
pub steps: Vec<SolveStep>,
}
Expand description
Solve path associated with a solution.
Fields§
§steps: Vec<SolveStep>
The sequence of steps taken to solve the Sudoku puzzle.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SolvePath
impl RefUnwindSafe for SolvePath
impl Send for SolvePath
impl Sync for SolvePath
impl Unpin for SolvePath
impl UnwindSafe for SolvePath
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