Struct google_youtube3::api::I18nLanguage
source · pub struct I18nLanguage {
pub etag: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub snippet: Option<I18nLanguageSnippet>,
}
Expand description
An i18nLanguage resource identifies a UI language currently supported by YouTube.
Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list i18n languages (none)
Fields§
§etag: Option<String>
Etag of this resource.
id: Option<String>
The ID that YouTube uses to uniquely identify the i18n language.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “youtube#i18nLanguage”.
snippet: Option<I18nLanguageSnippet>
The snippet object contains basic details about the i18n language, such as language code and human-readable name.
Trait Implementations§
source§impl Clone for I18nLanguage
impl Clone for I18nLanguage
source§fn clone(&self) -> I18nLanguage
fn clone(&self) -> I18nLanguage
Returns a copy 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 I18nLanguage
impl Debug for I18nLanguage
source§impl Default for I18nLanguage
impl Default for I18nLanguage
source§fn default() -> I18nLanguage
fn default() -> I18nLanguage
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for I18nLanguage
impl<'de> Deserialize<'de> for I18nLanguage
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 I18nLanguage
impl Serialize for I18nLanguage
source§impl ToParts for I18nLanguage
impl ToParts for I18nLanguage
impl Resource for I18nLanguage
Auto Trait Implementations§
impl RefUnwindSafe for I18nLanguage
impl Send for I18nLanguage
impl Sync for I18nLanguage
impl Unpin for I18nLanguage
impl UnwindSafe for I18nLanguage
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