Type Alias mas_i18n::translations::TranslationTree

source ·
pub type TranslationTree = Tree;

Aliased Type§

struct TranslationTree { /* private fields */ }

Implementations

source§

impl Tree

source

pub fn message(&self, key: &str) -> Option<&Message>

Get a message from the tree by key.

Returns None if the requested key is not found.

source

pub fn pluralize(&self, key: &str, category: PluralCategory) -> Option<&Message>

Get a pluralized message from the tree by key and plural category.

If the key doesn’t have plural variants, this will return the message itself. Returns the “other” category if the requested category is not found. Returns None if the requested key is not found.

Trait Implementations

source§

impl Clone for Tree

source§

fn clone(&self) -> Tree

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Tree

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Tree

source§

fn default() -> Tree

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Tree

source§

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 Serialize for Tree

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more