You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
youtube-metadata-rs/src/types.rs

9 lines
181 B
Rust

#[derive(Clone, Debug)]
pub struct VideoInformation {
pub id: String,
pub url: String,
pub title: String,
pub uploader: String,
pub thumbnail: Option<String>,
}