pub struct GetLanguagePackStrings {
pub language_pack_id: String,
pub keys: Vec<String>,
}
Expand description
Returns strings from a language pack in the current localization target by their keys
Fields§
§language_pack_id: String
Language pack identifier of the strings to be returned
keys: Vec<String>
Language pack keys of the strings to be returned; leave empty to request all available strings
Trait Implementations§
Source§impl Clone for GetLanguagePackStrings
impl Clone for GetLanguagePackStrings
Source§fn clone(&self) -> GetLanguagePackStrings
fn clone(&self) -> GetLanguagePackStrings
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 GetLanguagePackStrings
impl Debug for GetLanguagePackStrings
Source§impl<'de> Deserialize<'de> for GetLanguagePackStrings
impl<'de> Deserialize<'de> for GetLanguagePackStrings
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 Method for GetLanguagePackStrings
impl Method for GetLanguagePackStrings
Auto Trait Implementations§
impl Freeze for GetLanguagePackStrings
impl RefUnwindSafe for GetLanguagePackStrings
impl Send for GetLanguagePackStrings
impl Sync for GetLanguagePackStrings
impl Unpin for GetLanguagePackStrings
impl UnwindSafe for GetLanguagePackStrings
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