[][src]Struct fluent_fallback::Localization

pub struct Localization<'loc, R, I> where
    I: Iterator<Item = FluentBundle<R>> + 'loc, 
{ pub resource_ids: Vec<String>, // some fields omitted }

Fields

resource_ids: Vec<String>

Methods

impl<'loc, R, I> Localization<'loc, R, I> where
    I: Iterator<Item = FluentBundle<R>>, 
[src]

pub fn new<F>(resource_ids: Vec<String>, generate_bundles: F) -> Self where
    F: FnMut(&[String]) -> I + 'loc, 
[src]

pub fn on_change(&mut self)[src]

pub fn format_value<'l>(
    &'l self,
    id: &'l str,
    args: Option<&'l FluentArgs>
) -> Cow<'l, str> where
    R: Borrow<FluentResource>, 
[src]

Auto Trait Implementations

impl<'loc, R, I> !RefUnwindSafe for Localization<'loc, R, I>

impl<'loc, R, I> !Send for Localization<'loc, R, I>

impl<'loc, R, I> !Sync for Localization<'loc, R, I>

impl<'loc, R, I> Unpin for Localization<'loc, R, I> where
    I: Unpin

impl<'loc, R, I> !UnwindSafe for Localization<'loc, R, I>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.