Trait intl_memoizer::Memoizable [−][src]
pub trait Memoizable {
type Args: 'static + Eq + Hash + Clone;
type Error;
fn construct(
lang: LanguageIdentifier,
args: Self::Args
) -> Result<Self, Self::Error>
where
Self: Sized;
}