invidious 0.7.8

Get information about videos from YouTube with this simple Invidious API wrapper. Does not use the YouTube API (No tokens required)
Documentation
use serde::{Deserialize, Serialize};

use crate::CommonThumbnail;

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct PlaylistItem {
    pub title: String,
    #[serde(rename = "videoId")]
    pub id: String,
    pub author: String,
    #[serde(rename = "authorId")]
    pub author_id: String,
    #[serde(rename = "authorUrl")]
    pub author_url: String,

    #[serde(rename = "videoThumbnails")]
    pub thumbnails: Vec<CommonThumbnail>,
    pub index: u32,
    #[serde(rename = "lengthSeconds")]
    pub length: u32,
}