pub trait PostQuery {
// Required methods
fn header(&self) -> Map<String, Value>;
fn params(&self) -> Option<Cow<'_, str>>;
fn path(&self) -> &str;
}Expand description
Represents a plain POST query that can be sent to Innertube.
pub trait PostQuery {
// Required methods
fn header(&self) -> Map<String, Value>;
fn params(&self) -> Option<Cow<'_, str>>;
fn path(&self) -> &str;
}Represents a plain POST query that can be sent to Innertube.