pub struct LanguagePackInfo {
pub id: String,
pub name: String,
pub native_name: String,
pub local_string_count: i32,
}
Expand description
Contains information about a language pack
Fields§
§id: String
Unique language pack identifier
name: String
Language name
native_name: String
Name of the language in that language
local_string_count: i32
Total number of non-deleted strings from the language pack available locally
Trait Implementations§
Source§impl Clone for LanguagePackInfo
impl Clone for LanguagePackInfo
Source§fn clone(&self) -> LanguagePackInfo
fn clone(&self) -> LanguagePackInfo
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 LanguagePackInfo
impl Debug for LanguagePackInfo
Source§impl<'de> Deserialize<'de> for LanguagePackInfo
impl<'de> Deserialize<'de> for LanguagePackInfo
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
Auto Trait Implementations§
impl Freeze for LanguagePackInfo
impl RefUnwindSafe for LanguagePackInfo
impl Send for LanguagePackInfo
impl Sync for LanguagePackInfo
impl Unpin for LanguagePackInfo
impl UnwindSafe for LanguagePackInfo
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