[][src]Struct sttt::board::Board

pub struct Board {
    pub last_move: Option<Coord>,
    pub next_player: Player,
    pub won_by: Option<Player>,
    // some fields omitted
}

Fields

last_move: Option<Coord>next_player: Playerwon_by: Option<Player>

Implementations

impl Board[src]

pub fn new() -> Board[src]

pub fn is_done(&self) -> bool[src]

pub fn tile(&self, coord: Coord) -> Player[src]

pub fn macr(&self, om: u8) -> Player[src]

pub fn available_moves(&self) -> impl Iterator<Item = Coord> + '_[src]

pub fn random_available_move<R: Rng>(&self, rand: &mut R) -> Option<Coord>[src]

pub fn is_available_move(&self, coord: Coord) -> bool[src]

pub fn play(&mut self, coord: Coord) -> bool[src]

Trait Implementations

impl Clone for Board[src]

impl Display for Board[src]

impl Eq for Board[src]

impl PartialEq<Board> for Board[src]

impl StructuralEq for Board[src]

Auto Trait Implementations

impl RefUnwindSafe for Board

impl Send for Board

impl Sync for Board

impl Unpin for Board

impl UnwindSafe for Board

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,