[][src]Struct ggpf::game::breakthrough::Breakthrough

pub struct Breakthrough { /* fields omitted */ }

Breakthrough game state instance

Methods

impl Breakthrough[src]

pub fn show(&self)[src]

Prints a nice representation of the board.

Trait Implementations

impl Base for Breakthrough[src]

type Move = Move

The type for a Move. Read more

impl Clone for Breakthrough[src]

impl Debug for Breakthrough[src]

impl Eq for Breakthrough[src]

impl Features for Breakthrough[src]

type StateDim = Ix3

Type dimension of the game state feature space. Read more

type ActionDim = Ix3

Type dimension of the action feature space. Read more

type Descriptor = usize

Game features descriptor, that can be used to retrieve dimensions without having access to a game instance. Read more

impl Game for Breakthrough[src]

type Player = Color

The type representing each player. Read more

impl Hash for Breakthrough[src]

impl PartialEq<Breakthrough> for Breakthrough[src]

impl Playable for Breakthrough[src]

impl SingleWinner for Breakthrough[src]

impl StructuralEq for Breakthrough[src]

Auto Trait Implementations

impl RefUnwindSafe for Breakthrough

impl Send for Breakthrough

impl Sync for Breakthrough

impl Unpin for Breakthrough

impl UnwindSafe for Breakthrough

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> Erased for T

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

impl<T> FromPy<T> for T

impl<G> Game for G where
    G: Singleplayer
[src]

type Player = u8

The type representing each player. Read more

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

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 

impl<G> Playout for G where
    G: Game + Clone + Send
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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>, 

impl<T> With for T