Trait fluent_fallback::generator::BundleGenerator[][src]

pub trait BundleGenerator {
    type Resource: Borrow<FluentResource>;
    type Iter: Iterator<Item = FluentBundleResult<Self::Resource>>;
    type Stream: Stream<Item = FluentBundleResult<Self::Resource>>;
    fn bundles_iter(
        &self,
        locales: <Vec<LanguageIdentifier> as IntoIterator>::IntoIter,
        res_ids: Vec<String>
    ) -> Self::Iter;
fn bundles_stream(
        &self,
        locales: <Vec<LanguageIdentifier> as IntoIterator>::IntoIter,
        res_ids: Vec<String>
    ) -> Self::Stream; }

Associated Types

Loading content...

Required methods

fn bundles_iter(
    &self,
    locales: <Vec<LanguageIdentifier> as IntoIterator>::IntoIter,
    res_ids: Vec<String>
) -> Self::Iter
[src]

fn bundles_stream(
    &self,
    locales: <Vec<LanguageIdentifier> as IntoIterator>::IntoIter,
    res_ids: Vec<String>
) -> Self::Stream
[src]

Loading content...

Implementors

Loading content...