Struct google_youtube3::api::I18nRegion
source · pub struct I18nRegion {
pub etag: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub snippet: Option<I18nRegionSnippet>,
}
Expand description
A i18nRegion resource identifies a region where YouTube is available.
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 regions (none)
Fields§
§etag: Option<String>
Etag of this resource.
id: Option<String>
The ID that YouTube uses to uniquely identify the i18n region.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “youtube#i18nRegion”.
snippet: Option<I18nRegionSnippet>
The snippet object contains basic details about the i18n region, such as region code and human-readable name.
Trait Implementations§
source§impl Clone for I18nRegion
impl Clone for I18nRegion
source§fn clone(&self) -> I18nRegion
fn clone(&self) -> I18nRegion
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 I18nRegion
impl Debug for I18nRegion
source§impl Default for I18nRegion
impl Default for I18nRegion
source§fn default() -> I18nRegion
fn default() -> I18nRegion
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for I18nRegion
impl<'de> Deserialize<'de> for I18nRegion
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 I18nRegion
impl Serialize for I18nRegion
source§impl ToParts for I18nRegion
impl ToParts for I18nRegion
impl Resource for I18nRegion
Auto Trait Implementations§
impl RefUnwindSafe for I18nRegion
impl Send for I18nRegion
impl Sync for I18nRegion
impl Unpin for I18nRegion
impl UnwindSafe for I18nRegion
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