Struct google_youtube3::api::Caption
source · pub struct Caption {
pub etag: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub snippet: Option<CaptionSnippet>,
}
Expand description
A caption resource represents a YouTube caption track. A caption track is associated with exactly one YouTube video.
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 captions (none)
- download captions (none)
- insert captions (request|response)
- list captions (none)
- update captions (request|response)
Fields§
§etag: Option<String>
Etag of this resource.
id: Option<String>
The ID that YouTube uses to uniquely identify the caption track.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “youtube#caption”.
snippet: Option<CaptionSnippet>
The snippet object contains basic details about the caption.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Caption
impl<'de> Deserialize<'de> for Caption
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
impl RequestValue for Caption
impl Resource for Caption
impl ResponseResult for Caption
Auto Trait Implementations§
impl RefUnwindSafe for Caption
impl Send for Caption
impl Sync for Caption
impl Unpin for Caption
impl UnwindSafe for Caption
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