[][src]Trait twitch_api2::helix::RequestPost

pub trait RequestPost: Request {
    type Body: Serialize;
    fn body(&self, body: &Self::Body) -> Result<String, Error> { ... }
}

Helix endpoint POSTs information

Associated Types

type Body: Serialize

Body parameters

Loading content...

Provided methods

fn body(&self, body: &Self::Body) -> Result<String, Error>

Create body text from RequestPost::Body

Loading content...

Implementors

impl RequestPost for StartCommercialRequest[src]

impl RequestPost for CheckAutoModStatusRequest[src]

type Body = Vec<CheckAutoModStatusBody>

Loading content...