Struct google_youtube3::api::PlaylistImageListResponse
source · pub struct PlaylistImageListResponse {
pub items: Option<Vec<PlaylistImage>>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
pub page_info: Option<PageInfo>,
pub prev_page_token: Option<String>,
}
Expand description
There is no detailed description.
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 playlist images (response)
Fields§
§items: Option<Vec<PlaylistImage>>
no description provided
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “youtube#playlistImageListResponse”.
next_page_token: Option<String>
The token that can be used as the value of the pageToken parameter to retrieve the next page in the result set.
page_info: Option<PageInfo>
General pagination information.
prev_page_token: Option<String>
The token that can be used as the value of the pageToken parameter to retrieve the previous page in the result set.
Trait Implementations§
source§impl Clone for PlaylistImageListResponse
impl Clone for PlaylistImageListResponse
source§fn clone(&self) -> PlaylistImageListResponse
fn clone(&self) -> PlaylistImageListResponse
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 PlaylistImageListResponse
impl Debug for PlaylistImageListResponse
source§impl Default for PlaylistImageListResponse
impl Default for PlaylistImageListResponse
source§fn default() -> PlaylistImageListResponse
fn default() -> PlaylistImageListResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PlaylistImageListResponse
impl<'de> Deserialize<'de> for PlaylistImageListResponse
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 ToParts for PlaylistImageListResponse
impl ToParts for PlaylistImageListResponse
impl ResponseResult for PlaylistImageListResponse
Auto Trait Implementations§
impl RefUnwindSafe for PlaylistImageListResponse
impl Send for PlaylistImageListResponse
impl Sync for PlaylistImageListResponse
impl Unpin for PlaylistImageListResponse
impl UnwindSafe for PlaylistImageListResponse
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