pub trait StringifyScore {
// Required methods
fn stringify_score_console<'a>(self) -> Cow<'a, str>;
fn stringify_score_uci<'a>(self) -> Cow<'a, str>;
fn stringify_score<'a>(self) -> Cow<'a, str>;
}pub trait StringifyScore {
// Required methods
fn stringify_score_console<'a>(self) -> Cow<'a, str>;
fn stringify_score_uci<'a>(self) -> Cow<'a, str>;
fn stringify_score<'a>(self) -> Cow<'a, str>;
}