Struct gol_core::board::standard::StandardBoard[][src]

pub struct StandardBoard<T, CI, I> where
    T: Send + Sync,
    CI: Send + Sync,
    I: Iterator<Item = CI>, 
{ /* fields omitted */ }

Implementations

impl<T, CI, I> StandardBoard<T, CI, I> where
    T: 'static + Send + Sync + Clone,
    CI: 'static + Send + Sync + Clone,
    I: Iterator<Item = CI>, 
[src]

pub fn new(
    space_manager: Box<dyn BoardSpaceManager<CI, I, IntoIter<CI>>>,
    neighbor_manager: Box<dyn BoardNeighborManager<CI, I>>,
    state_manager: Box<dyn BoardStateManager<T, CI, IntoIter<IndexedDataOwned<CI, T>>>>,
    strategy_manager: Box<dyn BoardStrategyManager<CI, T, IntoIter<IndexedDataOwned<CI, T>>>>,
    callbacks: Vec<BoardCallback<T, CI, IntoIter<IndexedDataOwned<CI, T>>>>
) -> Self
[src]

Trait Implementations

impl<T, CI, I> Board<T, CI, I> for StandardBoard<T, CI, I> where
    T: 'static + Send + Sync + Clone,
    CI: 'static + Send + Sync + Clone,
    I: Iterator<Item = CI>, 
[src]

Auto Trait Implementations

impl<T, CI, I> !RefUnwindSafe for StandardBoard<T, CI, I>

impl<T, CI, I> Send for StandardBoard<T, CI, I>

impl<T, CI, I> Sync for StandardBoard<T, CI, I>

impl<T, CI, I> Unpin for StandardBoard<T, CI, I>

impl<T, CI, I> !UnwindSafe for StandardBoard<T, CI, I>

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

type Init = T

The type for initializers.

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.