Trait nonogrid::parser::BoardParser[][src]

pub trait BoardParser: Debug {
    fn with_content(content: &str) -> Result<Self, ParseError>
    where
        Self: Sized
;
fn parse<B>(&self) -> Board<B>
    where
        B: Block
;
fn infer_scheme(&self) -> PuzzleScheme; fn parse_rc<B>(&self) -> MutRc<Board<B>>
    where
        B: Block
, { ... } }

Required methods

Provided methods

Implementors