pub struct SudokuSolver { /* private fields */ }
Expand description
Sudoku solver. Takes in a config and will solve the puzzle.
Implementations§
Trait Implementations§
Source§impl Clone for SudokuSolver
impl Clone for SudokuSolver
Source§fn clone(&self) -> SudokuSolver
fn clone(&self) -> SudokuSolver
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 moreAuto Trait Implementations§
impl Freeze for SudokuSolver
impl RefUnwindSafe for SudokuSolver
impl Send for SudokuSolver
impl Sync for SudokuSolver
impl Unpin for SudokuSolver
impl UnwindSafe for SudokuSolver
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