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

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

Required methods

fn with_content(content: String) -> Result<Self, String> where
    Self: Sized

fn parse<B>(&self) -> Board<B> where
    B: Block

fn infer_scheme(&self) -> PuzzleScheme

Loading content...

Implementors

impl BoardParser for MyFormat[src]

impl BoardParser for NonogramsOrg[src]

impl BoardParser for WebPbn[src]

Loading content...