pub struct FluentAttribute<'m> { /* private fields */ }
Expand description

FluentAttribute is a component of a compound FluentMessage.

It represents a key-value pair providing a translation of a component of a user interface widget localized by the given message.

Example

use fluent_bundle::{FluentResource, FluentBundle};

let source = r#"

confirm-modal = Are you sure?
    .confirm = Yes
    .cancel = No
    .tooltip = Closing the window will lose all unsaved data.

"#;

let resource = FluentResource::try_new(source.to_string())
    .expect("Failed to parse the resource.");

let mut bundle = FluentBundle::default();
bundle.add_resource(resource)
    .expect("Failed to add a resource.");

let msg = bundle.get_message("confirm-modal")
    .expect("Failed to retrieve a message.");

let mut err = vec![];

let attributes = msg.attributes().map(|attr| {
    bundle.format_pattern(attr.value(), None, &mut err)
}).collect::<Vec<_>>();

assert_eq!(attributes[0], "Yes");
assert_eq!(attributes[1], "No");
assert_eq!(attributes[2], "Closing the window will lose all unsaved data.");

Implementations

Retrieves an id of an attribute.

Example
let msg = bundle.get_message("confirm-modal")
    .expect("Failed to retrieve a message.");

let attr1 = msg.attributes().next()
    .expect("Failed to retrieve an attribute.");

assert_eq!(attr1.id(), "confirm");

Retrieves an value of an attribute.

Example
let msg = bundle.get_message("confirm-modal")
    .expect("Failed to retrieve a message.");

let attr1 = msg.attributes().next()
    .expect("Failed to retrieve an attribute.");

let mut err = vec![];

let value = attr1.value();
assert_eq!(
    bundle.format_pattern(value, None, &mut err),
    "Yes"
);

Trait Implementations

Formats the value using the given formatter. Read more

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Convert the source color to the destination color using the specified method Read more

Convert the source color to the destination color using the bradford method by default Read more

Gets the TypeId of self. Read more

Returns the underlying type as Any.

Returns the underlying type as Any.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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.

Convert into T with values clamped to the color defined bounds Read more

Convert into T. The resulting color might be invalid in its color space Read more

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.

Convert into T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more

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