Struct bodyparser::Raw [] [src]

pub struct Raw;

Raw is a plugin to read a request body into UTF-8 String. Doesn't read multipart/form-data.

Trait Implementations

impl Key for Raw

type Value = Option<String>

impl<'a, 'b> Plugin<Request<'a, 'b>> for Raw

type Error = BodyError

fn eval(req: &mut Request) -> Result<Option<String>, BodyError>