Struct shakmaty::RemainingChecks [] [src]

pub struct RemainingChecks {
    pub white: u8,
    pub black: u8,
}

The number of checks the respective side needs to give in order to win (in a game of Three-Check).

Fields

Methods

impl RemainingChecks
[src]

[src]

[src]

[src]

Trait Implementations

impl Clone for RemainingChecks
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for RemainingChecks
[src]

impl PartialEq for RemainingChecks
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for RemainingChecks
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for RemainingChecks
[src]

[src]

Returns the "default value" for a type. Read more

impl Display for RemainingChecks
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations