Struct ArcLoader

Source
pub struct ArcLoader { /* private fields */ }
Expand description

A loader that uses Arc<FluentResource> as its backing storage. This is mainly useful for when you need to load fluent at run time. You can configure the initialisation with ArcLoaderBuilder.

use fluent_template_helper::{ArcLoader, FluentHelper};

let mut handlebars = handlebars::Handlebars::new();
let loader = ArcLoader::new("locales/", unic_langid::langid!("en-US"))
    .shared_resources(Some(&["locales/core.ftl".into()]))
    .customize(|bundle| bundle.set_use_isolating(false))
    .build()
    .unwrap();
handlebars.register_helper("fluent", Box::new(FluentHelper::new(loader)));

Implementations§

Source§

impl ArcLoader

Source

pub fn new<P: AsRef<Path> + ?Sized>( location: &P, fallback: LanguageIdentifier, ) -> ArcLoaderBuilder<'_, '_>

Creates a new ArcLoaderBuilder

Source

pub fn locales(&self) -> Vec<LanguageIdentifier>

Returns a Vec over the locales that were detected.

Source

pub fn lookup_single_language( &self, lang: &LanguageIdentifier, text_id: &str, args: Option<&HashMap<&str, FluentValue<'_>>>, ) -> Option<String>

Convenience function to look up a string for a single language

Trait Implementations§

Source§

impl Loader for ArcLoader

Source§

fn lookup( &self, lang: &LanguageIdentifier, text_id: &str, args: Option<&HashMap<&str, FluentValue<'_>>>, ) -> String

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.