rust_fish_chess_engine 0.1.4

A chess engine and functionality built in Rust. Built for the intention of incorporating it into my Svelte chess project through WASM.
Documentation
1
2
3
4
5
6
7
8
9
use crate::chess_functionality::moves::Move;


#[derive(Debug, Clone)]
pub struct EngineCalculation {
    pub best_move: Option<Move>,
    pub score: i32,
    // pub move_sequence: Vec<Move>,
}