Struct FluentAttribute
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§
§impl<'m> FluentAttribute<'m>
impl<'m> FluentAttribute<'m>
pub fn id(&self) -> &'m str
pub fn id(&self) -> &'m str
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");pub fn value(&self) -> &'m Pattern<&'m str>
pub fn value(&self) -> &'m Pattern<&'m str>
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§
§impl<'m> Debug for FluentAttribute<'m>
impl<'m> Debug for FluentAttribute<'m>
§impl<'m> From<&'m Attribute<&'m str>> for FluentAttribute<'m>
impl<'m> From<&'m Attribute<&'m str>> for FluentAttribute<'m>
§fn from(attr: &'m Attribute<&'m str>) -> FluentAttribute<'m>
fn from(attr: &'m Attribute<&'m str>) -> FluentAttribute<'m>
Converts to this type from the input type.
§impl<'m> PartialEq for FluentAttribute<'m>
impl<'m> PartialEq for FluentAttribute<'m>
impl<'m> StructuralPartialEq for FluentAttribute<'m>
Auto Trait Implementations§
impl<'m> Freeze for FluentAttribute<'m>
impl<'m> RefUnwindSafe for FluentAttribute<'m>
impl<'m> Send for FluentAttribute<'m>
impl<'m> Sync for FluentAttribute<'m>
impl<'m> Unpin for FluentAttribute<'m>
impl<'m> UnwindSafe for FluentAttribute<'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
Mutably borrows from an owned value. Read more
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>
Convert
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>
Convert
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)
Convert
&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)
Convert
&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>
Converts
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>
Converts
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