sgf-parse 4.2.8

A parser for the SGF file format for Go games
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Error type for invalid SGF properties.
#[derive(Debug)]
pub struct SgfPropError {}

impl std::fmt::Display for SgfPropError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "Invalid property value")
    }
}

impl std::error::Error for SgfPropError {}