pub struct LocalizedCompanyInfo {
pub language_code: Option<String>,
pub country_codes: Option<Vec<String>>,
pub overview: Option<String>,
pub display_name: Option<String>,
}Expand description
The localized company information.
This type is not used in any activity, and only used as part of another schema.
Fields§
§language_code: Option<String>Language code of the localized company info, as defined by BCP 47 (IETF BCP 47, “Tags for Identifying Languages”).
country_codes: Option<Vec<String>>List of country codes for the localized company info.
overview: Option<String>Localized brief description that the company uses to advertise themselves.
display_name: Option<String>Localized display name.
Trait Implementations§
Source§impl Clone for LocalizedCompanyInfo
impl Clone for LocalizedCompanyInfo
Source§fn clone(&self) -> LocalizedCompanyInfo
fn clone(&self) -> LocalizedCompanyInfo
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 LocalizedCompanyInfo
impl Debug for LocalizedCompanyInfo
Source§impl Default for LocalizedCompanyInfo
impl Default for LocalizedCompanyInfo
Source§fn default() -> LocalizedCompanyInfo
fn default() -> LocalizedCompanyInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocalizedCompanyInfo
impl<'de> Deserialize<'de> for LocalizedCompanyInfo
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 Serialize for LocalizedCompanyInfo
impl Serialize for LocalizedCompanyInfo
impl Part for LocalizedCompanyInfo
Auto Trait Implementations§
impl Freeze for LocalizedCompanyInfo
impl RefUnwindSafe for LocalizedCompanyInfo
impl Send for LocalizedCompanyInfo
impl Sync for LocalizedCompanyInfo
impl Unpin for LocalizedCompanyInfo
impl UnwindSafe for LocalizedCompanyInfo
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