Struct gooey::fluent::fluent::FluentResource
[−]pub struct FluentResource(_);
Expand description
A resource containing a list of localization messages.
FluentResource
wraps an Abstract Syntax Tree
produced by the
parser
and provides an access to a list
of its entries.
A good mental model for a resource is a single FTL file, but in the future there’s nothing preventing a resource from being stored in a data base, pre-parsed format or in some other structured form.
Example
use fluent_bundle::FluentResource;
let source = r#"
hello-world = Hello World!
"#;
let resource = FluentResource::try_new(source.to_string())
.expect("Errors encountered while parsing a resource.");
assert_eq!(resource.entries().count(), 1);
Ownership
A resource owns the source string and the AST contains references to the slices of the source.
Implementations
impl FluentResource
impl FluentResource
pub fn try_new(
source: String
) -> Result<FluentResource, (FluentResource, Vec<ParserError, Global>)>
pub fn try_new(
source: String
) -> Result<FluentResource, (FluentResource, Vec<ParserError, Global>)>
A fallible constructor of a new FluentResource
.
It takes an encoded Fluent Translation List
string, parses
it and stores both, the input string and the AST view of it,
for runtime use.
Example
use fluent_bundle::FluentResource;
let source = r#"
hello-world = Hello, { $user }!
"#;
let resource = FluentResource::try_new(source.to_string());
assert!(resource.is_ok());
Errors
The method will return the resource irrelevant of parse errors
encountered during parsing of the source, but in case of errors,
the Err
variant will contain both the structure and a vector
of errors.
pub fn source(&self) -> &str
pub fn source(&self) -> &str
Returns a reference to the source string that was used
to construct the FluentResource
.
Example
use fluent_bundle::FluentResource;
let source = "hello-world = Hello, { $user }!";
let resource = FluentResource::try_new(source.to_string())
.expect("Failed to parse FTL.");
assert_eq!(
resource.source(),
"hello-world = Hello, { $user }!"
);
pub fn entries(&self) -> impl Iterator<Item = &Entry<&str>>
pub fn entries(&self) -> impl Iterator<Item = &Entry<&str>>
Returns an iterator over entries
of the FluentResource
.
Example
use fluent_bundle::FluentResource;
use fluent_syntax::ast;
let source = r#"
hello-world = Hello, { $user }!
"#;
let resource = FluentResource::try_new(source.to_string())
.expect("Failed to parse FTL.");
assert_eq!(
resource.entries().count(),
1
);
assert!(matches!(resource.entries().next(), Some(ast::Entry::Message(_))));
pub fn get_entry(&self, idx: usize) -> Option<&Entry<&str>>
pub fn get_entry(&self, idx: usize) -> Option<&Entry<&str>>
Returns an Entry
at the
given index out of the FluentResource
.
Example
use fluent_bundle::FluentResource;
use fluent_syntax::ast;
let source = r#"
hello-world = Hello, { $user }!
"#;
let resource = FluentResource::try_new(source.to_string())
.expect("Failed to parse FTL.");
assert!(matches!(resource.get_entry(0), Some(ast::Entry::Message(_))));
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FluentResource
impl Send for FluentResource
impl Sync for FluentResource
impl Unpin for FluentResource
impl UnwindSafe for FluentResource
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