Struct rouille::ResponseBody [] [src]

pub struct ResponseBody { /* fields omitted */ }

An opaque type that represents the body of a response.

Methods

impl ResponseBody
[src]

Builds a ResponseBody that doesn't return any data.

Builds a new ResponseBody that will read the data from a Read.

Note that this is suboptimal compared to other constructors because the length isn't known in advance.

Builds a new ResponseBody that returns the given data.

Builds a new ResponseBody that returns the content of the given file.

Builds a new ResponseBody that returns an UTF-8 string.