Struct gooey::fluent::fluent::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<FluentAttribute<'m>> for FluentAttribute<'m>
impl<'m> PartialEq<FluentAttribute<'m>> for FluentAttribute<'m>
fn eq(&self, other: &FluentAttribute<'m>) -> bool
fn eq(&self, other: &FluentAttribute<'m>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &FluentAttribute<'m>) -> bool
fn ne(&self, other: &FluentAttribute<'m>) -> bool
This method tests for !=
.
impl<'m> StructuralPartialEq for FluentAttribute<'m>
Auto Trait Implementations
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
sourceimpl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
sourcefn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
Convert the source color to the destination color using the specified method Read more
sourcefn adapt_into(self) -> D
fn adapt_into(self) -> D
Convert the source color to the destination color using the bradford method by default Read more
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T, U> IntoColor<U> for T where
U: FromColor<T>,
impl<T, U> IntoColor<U> for T where
U: FromColor<T>,
sourcefn into_color(self) -> U
fn into_color(self) -> U
Convert into T with values clamped to the color defined bounds Read more
sourceimpl<T, U> IntoColorUnclamped<U> for T where
U: FromColorUnclamped<T>,
impl<T, U> IntoColorUnclamped<U> for T where
U: FromColorUnclamped<T>,
sourcefn into_color_unclamped(self) -> U
fn into_color_unclamped(self) -> U
Convert into T. The resulting color might be invalid in its color space Read more
sourceimpl<T, U> TryIntoColor<U> for T where
U: TryFromColor<T>,
impl<T, U> TryIntoColor<U> for T where
U: TryFromColor<T>,
sourcefn try_into_color(self) -> Result<U, OutOfBounds<U>>
fn try_into_color(self) -> Result<U, OutOfBounds<U>>
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
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more