Struct google_youtube3::api::PlaylistItem [−][src]
A playlistItem resource identifies another resource, such as a video, that is included in a playlist. In addition, the playlistItem resource contains details about the included resource that pertain specifically to how that resource is used in that playlist. YouTube uses playlists to identify special collections of videos for a channel, such as: - uploaded videos - favorite videos - positively rated (liked) videos - watch history - watch later To be more specific, these lists are associated with a channel, which is a collection of a person, group, or company's videos, playlists, and other YouTube information. You can retrieve the playlist IDs for each of these lists from the channel resource for a given channel. You can then use the playlistItems.list method to retrieve any of those lists. You can also add or remove items from those lists by calling the playlistItems.insert and playlistItems.delete methods. For example, if a user gives a positive rating to a video, you would insert that video into the liked videos playlist for that user's channel.
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).
- delete playlist items (none)
- insert playlist items (request|response)
- list playlist items (none)
- update playlist items (request|response)
Fields
content_details: Option<PlaylistItemContentDetails>The contentDetails object is included in the resource if the included item is a YouTube video. The object contains additional information about the video.
etag: Option<String>Etag of this resource.
id: Option<String>The ID that YouTube uses to uniquely identify the playlist item.
kind: Option<String>Identifies what kind of resource this is. Value: the fixed string "youtube#playlistItem".
snippet: Option<PlaylistItemSnippet>The snippet object contains basic details about the playlist item, such as its title and position in the playlist.
status: Option<PlaylistItemStatus>The status object contains information about the playlist item's privacy status.
Trait Implementations
impl Clone for PlaylistItem[src]
fn clone(&self) -> PlaylistItem[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for PlaylistItem[src]
impl Default for PlaylistItem[src]
fn default() -> PlaylistItem[src]
impl<'de> Deserialize<'de> for PlaylistItem[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl RequestValue for PlaylistItem[src]
impl Resource for PlaylistItem[src]
impl ResponseResult for PlaylistItem[src]
impl Serialize for PlaylistItem[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl ToParts for PlaylistItem[src]
Auto Trait Implementations
impl RefUnwindSafe for PlaylistItem[src]
impl Send for PlaylistItem[src]
impl Sync for PlaylistItem[src]
impl Unpin for PlaylistItem[src]
impl UnwindSafe for PlaylistItem[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,