Trait vimwiki::FromLanguage[][src]

pub trait FromLanguage<'a> {
    type Error;
    fn from_language(language: Language<'a>) -> Result<Self, Self::Error>;
}
Expand description

Parse a value from a Language

Associated Types

Required methods

Parses a Language to return a value of this type

Implementors