[][src]Trait rustenginelib::bitboard::BitboardTrait

pub trait BitboardTrait {
    fn pretty_print_string(&self) -> String;
}

Bitboard trait adds functions to an u64 that allow treating it as a chess engine bitboard

Required methods

fn pretty_print_string(&self) -> String

returns a string that represents the bitboard as pretty print string

Loading content...

Implementors

impl BitboardTrait for Bitboard[src]

BitboardTrait adds methods to Bitboard

fn pretty_print_string(&self) -> String[src]

returns a string that represents the bitboard as pretty print string

Loading content...