#[repr(C)]pub struct SolvedBoards {
pub no_of_boards: c_int,
pub solved_board: [FutureTricks; 200],
}Expand description
@brief Solutions for multiple boards.
Container for results from batch board solving operations. Each entry contains the complete future tricks analysis for one board.
@see FutureTricks
Fields§
§no_of_boards: c_int< Number of solved boards
solved_board: [FutureTricks; 200]< Array of solutions
Trait Implementations§
Source§impl Clone for SolvedBoards
impl Clone for SolvedBoards
Source§fn clone(&self) -> SolvedBoards
fn clone(&self) -> SolvedBoards
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 SolvedBoards
impl Debug for SolvedBoards
Source§impl Default for SolvedBoards
impl Default for SolvedBoards
Source§impl Hash for SolvedBoards
impl Hash for SolvedBoards
Source§impl PartialEq for SolvedBoards
impl PartialEq for SolvedBoards
Source§fn eq(&self, other: &SolvedBoards) -> bool
fn eq(&self, other: &SolvedBoards) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SolvedBoards
impl Eq for SolvedBoards
impl StructuralPartialEq for SolvedBoards
Auto Trait Implementations§
impl Freeze for SolvedBoards
impl RefUnwindSafe for SolvedBoards
impl Send for SolvedBoards
impl Sync for SolvedBoards
impl Unpin for SolvedBoards
impl UnsafeUnpin for SolvedBoards
impl UnwindSafe for SolvedBoards
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