Trait vimwiki_core::FromLanguage[][src]

pub trait FromLanguage<'a>: Sized {
    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