[][src]Struct bulls_and_cows::play::players::ComputerQuestioner

pub struct ComputerQuestioner<T: Eq + Hash + Clone> { /* fields omitted */ }

A questioner controlled by a computer.

Methods

impl<T: Eq + Hash + Clone> ComputerQuestioner<T>[src]

pub fn new(host: Host<T>, thinking_delay: u64) -> ComputerQuestioner<T>[src]

Create a new computer player as a questioner. The thinking_delay is a value which simulates the time in milliseconds that a human player needs to take to think.

Trait Implementations

impl<T: Eq + Hash + Clone> Questioner<T> for ComputerQuestioner<T>[src]

type Error = HostError<T>

impl<T: Debug + Eq + Hash + Clone> Debug for ComputerQuestioner<T>[src]

Auto Trait Implementations

impl<T> Sync for ComputerQuestioner<T> where
    T: Sync

impl<T> Unpin for ComputerQuestioner<T> where
    T: Unpin

impl<T> Send for ComputerQuestioner<T> where
    T: Send

impl<T> UnwindSafe for ComputerQuestioner<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for ComputerQuestioner<T> where
    T: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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