pub enum LocalizationArg {
    Content(Content),
    Nat(u64),
}Expand description
A localisation argument for localised content (see Content::Localized).
Variants§
Content(Content)
The localisation argument is itself a section of content.
Note that this allows Content to recursively refer to itself. It may
be tempting to decide to parameterise everything, having dialogue
generated with a compact tree. “It’s simpler!”, you might say. False.
Over-parameterisation is an anti-pattern that hurts translators. Where
possible, prefer fewer levels of nesting unless doing so would result
in an intractably larger number of combinations. See here for the
guidance provided by the docs for fluent, the localisation library
used by clients.
Nat(u64)
The localisation argument is a natural number
Trait Implementations§
Source§impl Clone for LocalizationArg
 
impl Clone for LocalizationArg
Source§fn clone(&self) -> LocalizationArg
 
fn clone(&self) -> LocalizationArg
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for LocalizationArg
 
impl Debug for LocalizationArg
Source§impl<'de> Deserialize<'de> for LocalizationArg
 
impl<'de> Deserialize<'de> for LocalizationArg
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> From<&'a str> for LocalizationArg
 
impl<'a> From<&'a str> for LocalizationArg
Source§impl From<Content> for LocalizationArg
 
impl From<Content> for LocalizationArg
Source§impl From<String> for LocalizationArg
 
impl From<String> for LocalizationArg
Source§impl From<u64> for LocalizationArg
 
impl From<u64> for LocalizationArg
Source§impl PartialEq for LocalizationArg
 
impl PartialEq for LocalizationArg
Source§impl Serialize for LocalizationArg
 
impl Serialize for LocalizationArg
impl StructuralPartialEq for LocalizationArg
Auto Trait Implementations§
impl Freeze for LocalizationArg
impl RefUnwindSafe for LocalizationArg
impl Send for LocalizationArg
impl Sync for LocalizationArg
impl Unpin for LocalizationArg
impl UnwindSafe for LocalizationArg
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> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
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