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