seer/src/fen.rs

7 lines
163 B
Rust
Raw Normal View History

2022-07-27 23:25:35 +02:00
/// A trait to mark items that can be converted from a FEN input.
pub trait FromFen: Sized {
type Err;
fn from_fen(s: &str) -> Result<Self, Self::Err>;
}