Struct zero_sum::impls::tic_tac_toe::Ply
[−]
[src]
pub struct Ply {
pub mark: Mark,
pub coordinates: (usize, usize),
}The placement of a mark in an empty space.
Fields
mark: Mark
coordinates: (usize, usize)
Trait Implementations
impl Display for Ply[src]
impl Ply for Ply[src]
impl Clone for Ply[src]
fn clone(&self) -> Ply
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for Ply[src]
impl PartialEq for Ply[src]
fn eq(&self, __arg_0: &Ply) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Ply) -> bool
This method tests for !=.