pub struct FoundPlays {
pub plays: [Option<Play>; 13],
pub nodes: u32,
}Expand description
Solved plays for a board
Fields§
§plays: [Option<Play>; 13]The plays and their consequences
nodes: u32The number of nodes searched by the solver
Trait Implementations§
Source§impl Clone for FoundPlays
impl Clone for FoundPlays
Source§fn clone(&self) -> FoundPlays
fn clone(&self) -> FoundPlays
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 FoundPlays
impl Debug for FoundPlays
Source§impl From<futureTricks> for FoundPlays
impl From<futureTricks> for FoundPlays
Source§fn from(future: futureTricks) -> Self
fn from(future: futureTricks) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FoundPlays
impl PartialEq for FoundPlays
impl Copy for FoundPlays
impl Eq for FoundPlays
impl StructuralPartialEq for FoundPlays
Auto Trait Implementations§
impl Freeze for FoundPlays
impl RefUnwindSafe for FoundPlays
impl Send for FoundPlays
impl Sync for FoundPlays
impl Unpin for FoundPlays
impl UnwindSafe for FoundPlays
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