pub struct I18NResourcesBuilder { /* private fields */ }
Available on crate feature i18n only.
Expand description

I18N resources builder.

Implementations

Add resources directory.

The resource directory contains multiple language directories, each of which can contain multiple FTL files for that language.

/resources
    /en-US
        simple.ftl
        errors.ftl
    /zh-CN
        simple.ftl
        errors.ftl

Add FTL(Fluent Translation List) for the specified language.

Example
use poem::i18n::I18NResources;

let resources = I18NResources::builder()
    .add_ftl("en-US", "hello-world = Hello world!")
    .add_ftl("zh-CN", "hello-world = 你好世界!")
    .build()
    .unwrap();

Set the default language when the language negotiation fails.

NOTE: This language ID matches exactly the language id contained in the resources.

Example
use poem::i18n::I18NResources;
use unic_langid::langid;

let resources = I18NResources::builder()
    .add_ftl("en-US", "hello-world = Hello world!")
    .add_ftl("zh-CN", "hello-world = 你好世界!")
    .default_language(langid!("en-US"))
    .build()
    .unwrap();

Sets the negotiation strategy.

Default is NegotiationStrategy::Filtering.

Consumes this builder and returns a I18NResources object.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Attaches the current Context to this type, returning a WithContext wrapper. Read more
Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more