pub struct LocaleCodeList {
pub total: u64,
pub locale_codes: Vec<LocaleCode>,
}Expand description
Locale codes List
Fields§
§total: u64Total number of localeCodes documents that matched your query.
locale_codes: Vec<LocaleCode>List of localeCodes.
Trait Implementations§
Source§impl Clone for LocaleCodeList
impl Clone for LocaleCodeList
Source§fn clone(&self) -> LocaleCodeList
fn clone(&self) -> LocaleCodeList
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 LocaleCodeList
impl Debug for LocaleCodeList
Source§impl Default for LocaleCodeList
impl Default for LocaleCodeList
Source§fn default() -> LocaleCodeList
fn default() -> LocaleCodeList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocaleCodeList
impl<'de> Deserialize<'de> for LocaleCodeList
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 PartialEq for LocaleCodeList
impl PartialEq for LocaleCodeList
Source§impl Serialize for LocaleCodeList
impl Serialize for LocaleCodeList
impl StructuralPartialEq for LocaleCodeList
Auto Trait Implementations§
impl Freeze for LocaleCodeList
impl RefUnwindSafe for LocaleCodeList
impl Send for LocaleCodeList
impl Sync for LocaleCodeList
impl Unpin for LocaleCodeList
impl UnwindSafe for LocaleCodeList
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