Trait helianto::readers::Reader [] [src]

pub trait Reader {
    fn extensions() -> &'static [&'static str] where Self: Sized;
    fn new(settings: &Settings) -> Self where Self: Sized;
    fn load(&self, path: &Path) -> Result<(String, Metadata)>;
}

Required Methods

fn extensions() -> &'static [&'static str] where Self: Sized

fn new(settings: &Settings) -> Self where Self: Sized

fn load(&self, path: &Path) -> Result<(String, Metadata)>

Implementors