fn fen_to_fullmove_number(
board: &mut Board,
fullmove_number: &str
) -> Result<(), String>
Expand description
Parses FEN’s fullmove number and stores it into the board
. Returns Err with the proper error message if fullmove_number
couldn’t be parsed.