[][src]Enum usi::InfoParams

pub enum InfoParams {
    CurrMove(String),
    Depth(i32Option<i32>),
    HashFull(i32),
    MultiPv(i32),
    Nodes(i32),
    Nps(i32),
    Pv(Vec<String>),
    Score(i32ScoreKind),
    Text(String),
    Time(Duration),
}

Represents parameters of "info" command.

Variants

CurrMove(String)Depth(i32Option<i32>)HashFull(i32)MultiPv(i32)Nodes(i32)Nps(i32)Pv(Vec<String>)Score(i32ScoreKind)Text(String)Time(Duration)

Trait Implementations

impl Debug for InfoParams
[src]

Auto Trait Implementations

impl Send for InfoParams

impl Sync for InfoParams

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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