Add 'From<InvalidError>' for 'FenError'

This commit is contained in:
Bruno BELANYI 2024-04-01 21:30:52 +01:00
parent a676094dc1
commit 829362dbce
1 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,13 @@ impl std::fmt::Display for FenError {
impl std::error::Error for FenError {}
/// Allow converting a [InvalidError] into [FenError], for use with the '?' operator.
impl From<InvalidError> for FenError {
fn from(err: InvalidError) -> Self {
Self::InvalidPosition(err)
}
}
/// Convert the castling rights segment of a FEN string to an array of [CastleRights].
impl FromFen for [CastleRights; 2] {
type Err = FenError;