Struct FluentMessage
pub struct FluentMessage<'m> { /* private fields */ }Expand description
FluentMessage is a basic translation unit of the Fluent system.
The instance of a message is returned from the
FluentBundle::get_message
method, for the lifetime of the FluentBundle instance.
§Example
use fluent_bundle::{FluentResource, FluentBundle};
let source = r#"
hello-world = Hello World!
"#;
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("hello-world")
.expect("Failed to retrieve a message.");
assert!(msg.value().is_some());That value can be then passed to
FluentBundle::format_pattern to be formatted
within the context of a given FluentBundle instance.
§Compound Message
A message may contain a value, but it can also contain a list of FluentAttribute elements.
If a message contains attributes, it is called a “compound” message.
In such case, the message contains a list of key-value attributes that represent different translation values associated with a single translation unit.
This is useful for scenarios where a FluentMessage is associated with a
complex User Interface widget which has multiple attributes that need to be translated.
confirm-modal = Are you sure?
.confirm = Yes
.cancel = No
.tooltip = Closing the window will lose all unsaved data.Implementations§
§impl<'m> FluentMessage<'m>
impl<'m> FluentMessage<'m>
pub fn value(&self) -> Option<&'m Pattern<&'m str>>
pub fn value(&self) -> Option<&'m Pattern<&'m str>>
Retrieves an option of a ast::Pattern.
§Example
let msg = bundle.get_message("hello-world")
.expect("Failed to retrieve a message.");
if let Some(value) = msg.value() {
let mut err = vec![];
assert_eq!(
bundle.format_pattern(value, None, &mut err),
"Hello World!"
);
}pub fn attributes(&self) -> impl Iterator<Item = FluentAttribute<'m>>
pub fn attributes(&self) -> impl Iterator<Item = FluentAttribute<'m>>
An iterator over FluentAttribute elements.
§Example
let msg = bundle.get_message("hello-world")
.expect("Failed to retrieve a message.");
let mut err = vec![];
for attr in msg.attributes() {
let _ = bundle.format_pattern(attr.value(), None, &mut err);
}pub fn get_attribute(&self, key: &str) -> Option<FluentAttribute<'m>>
pub fn get_attribute(&self, key: &str) -> Option<FluentAttribute<'m>>
Retrieve a single FluentAttribute element.
§Example
let msg = bundle.get_message("hello-world")
.expect("Failed to retrieve a message.");
let mut err = vec![];
if let Some(attr) = msg.get_attribute("label") {
assert_eq!(
bundle.format_pattern(attr.value(), None, &mut err),
"This is a label"
);
}Trait Implementations§
§impl<'m> Debug for FluentMessage<'m>
impl<'m> Debug for FluentMessage<'m>
§impl<'m> From<&'m Message<&'m str>> for FluentMessage<'m>
impl<'m> From<&'m Message<&'m str>> for FluentMessage<'m>
§fn from(msg: &'m Message<&'m str>) -> FluentMessage<'m>
fn from(msg: &'m Message<&'m str>) -> FluentMessage<'m>
§impl<'m> PartialEq for FluentMessage<'m>
impl<'m> PartialEq for FluentMessage<'m>
impl<'m> StructuralPartialEq for FluentMessage<'m>
Auto Trait Implementations§
impl<'m> Freeze for FluentMessage<'m>
impl<'m> RefUnwindSafe for FluentMessage<'m>
impl<'m> Send for FluentMessage<'m>
impl<'m> Sync for FluentMessage<'m>
impl<'m> Unpin for FluentMessage<'m>
impl<'m> UnwindSafe for FluentMessage<'m>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> ComponentProps for T
impl<T> ComponentProps for T
fn changed(&self, other: &(dyn ComponentProps + 'static)) -> bool
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more