rustypipe 0.11.4

Client for the public YouTube / YouTube Music API (Innertube), inspired by NewPipe
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::Deserialize;

use super::{
    music_item::{Grid, SingleColumnBrowseResult},
    SectionList, Tab,
};

#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct MusicNew {
    pub contents: SingleColumnBrowseResult<Tab<SectionList<Grid>>>,
}