Struct harmony::Board [] [src]

pub struct Board<'a> {
    pub players: Vec<&'a Player>,
    pub size: usize,
    pub board: Vec<Option<Stone<'a>>>,
}

Fields

Methods

impl<'a> Board<'a>
[src]

Trait Implementations

impl<'a> Debug for Board<'a>
[src]

Formats the value using the given formatter.

impl<'a> Clone for Board<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more