rusty_dl 1.0.8

A crate for downloading youtube videos, twitter medias (videos, images, gif) from tweets and files on the web.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::AccessibilityDataWrapper;

#[derive(Debug, serde::Deserialize, serde::Serialize, Clone)]
pub struct VideoTitle {
    pub runs: Vec<TitleText>,
    pub accessibility: AccessibilityDataWrapper,
}

#[derive(Debug, serde::Deserialize, serde::Serialize, Clone)]
pub struct TitleText {
    pub text: String,
}