pub struct JSONGetText<'a> { /* private fields */ }
Expand description

A wrapper for context and a default key. Keys are usually considered as locales.

Implementations§

source§

impl<'a> JSONGetText<'a>

source

pub fn build<S: Into<String>>(default_key: S) -> JSONGetTextBuilder<'a>

Create a new JSONGetTextBuilder instance. You need to decide your default key at the stage.

source

pub fn get_keys(&self) -> Vec<&str>

Get all keys in context.

source

pub fn contains_key<K: AsRef<str>>(&self, key: K) -> bool

Returns true if the context contains a value for the specified key.

source

pub fn get_default_key(&self) -> &str

Get the default key.

source

pub fn get<K: AsRef<str>>( &self, key: K ) -> &HashMap<String, JSONGetTextValue<'a>>

Get a string map from context by a key.

source

pub fn get_text<T: AsRef<str>>( &'a self, text: T ) -> Option<JSONGetTextValue<'a>>

Get text from context.

source

pub fn get_text_with_key<K: AsRef<str>, T: AsRef<str>>( &'a self, key: K, text: T ) -> Option<JSONGetTextValue<'a>>

Get text from context with a specific key.

source

pub fn get_multiple_text<'b, T: AsRef<str> + ?Sized>( &self, text_array: &[&'b T] ) -> Option<HashMap<&'b str, JSONGetTextValue<'_>>>

Get multiple text from context. The output map is usually used for serialization.

source

pub fn get_multiple_text_with_key<'b, K: AsRef<str>, T: AsRef<str> + ?Sized>( &'a self, key: K, text_array: &[&'b T] ) -> Option<HashMap<&'b str, JSONGetTextValue<'a>>>

Get multiple text from context with a specific key. The output map is usually used for serialization.

source

pub fn get_filtered_text( &'a self, regex: &Regex ) -> Option<HashMap<&'a str, JSONGetTextValue<'a>>>

Get filtered text from context by a Regex instance. The output map is usually used for serialization.

source

pub fn get_filtered_text_with_key<K: AsRef<str>>( &'a self, key: K, regex: &Regex ) -> Option<HashMap<&'a str, JSONGetTextValue<'a>>>

Get filtered text from context with a specific key by a Regex instance. The output map is usually used for serialization.

Trait Implementations§

source§

impl<'a> Debug for JSONGetText<'a>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for JSONGetText<'a>

§

impl<'a> Send for JSONGetText<'a>

§

impl<'a> Sync for JSONGetText<'a>

§

impl<'a> Unpin for JSONGetText<'a>

§

impl<'a> UnwindSafe for JSONGetText<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.