Struct google_youtube3::api::ChannelBannerResource
source · pub struct ChannelBannerResource {
pub etag: Option<String>,
pub kind: Option<String>,
pub url: Option<String>,
}
Expand description
A channel banner returned as the response to a channel_banner.insert call.
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).
- insert channel banners (request|response)
Fields§
§etag: Option<String>
no description provided
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “youtube#channelBannerResource”.
url: Option<String>
The URL of this banner image.
Trait Implementations§
source§impl Clone for ChannelBannerResource
impl Clone for ChannelBannerResource
source§fn clone(&self) -> ChannelBannerResource
fn clone(&self) -> ChannelBannerResource
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 ChannelBannerResource
impl Debug for ChannelBannerResource
source§impl Default for ChannelBannerResource
impl Default for ChannelBannerResource
source§fn default() -> ChannelBannerResource
fn default() -> ChannelBannerResource
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ChannelBannerResource
impl<'de> Deserialize<'de> for ChannelBannerResource
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 ChannelBannerResource
impl Serialize for ChannelBannerResource
impl RequestValue for ChannelBannerResource
impl ResponseResult for ChannelBannerResource
Auto Trait Implementations§
impl RefUnwindSafe for ChannelBannerResource
impl Send for ChannelBannerResource
impl Sync for ChannelBannerResource
impl Unpin for ChannelBannerResource
impl UnwindSafe for ChannelBannerResource
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