pub trait FluentType: 'static + Debug + AnyEq {
    fn duplicate(&self) -> Box<dyn FluentType + Send + 'static, Global>;
    fn as_string(&self, intls: &IntlLangMemoizer) -> Cow<'static, str>;
    fn as_string_threadsafe(&self, intls: &IntlLangMemoizer) -> Cow<'static, str>;
}

Required Methods§

Implementors§