Enum hyper::client::Body [-]  [+] [src]

pub enum Body<'a> {
    ChunkedBody(&'a mut Reader + 'a),
    SizedBody(&'a mut Reader + 'a, u64),
    BufBody(&'a [u8], usize),
}

The target enum for the IntoBody trait.

Variants

ChunkedBody

A Reader does not necessarily know it's size, so it is chunked.

SizedBody

For Readers that can know their size, like a File.

BufBody

A String has a size, and uses Content-Length.

Trait Implementations

impl<'a> Reader for Body<'a>

fn read(&mut self, buf: &mut [u8]) -> IoResult<usize>

fn read_at_least(&mut self, min: usize, buf: &mut [u8]) -> Result<usize, IoError>

fn read_byte(&mut self) -> Result<u8, IoError>

fn push(&mut self, len: usize, buf: &mut Vec<u8>) -> Result<usize, IoError>

fn push_at_least(&mut self, min: usize, len: usize, buf: &mut Vec<u8>) -> Result<usize, IoError>

fn read_exact(&mut self, len: usize) -> Result<Vec<u8>, IoError>

fn read_to_end(&mut self) -> Result<Vec<u8>, IoError>

fn read_to_string(&mut self) -> Result<String, IoError>

fn read_le_uint_n(&mut self, nbytes: usize) -> Result<u64, IoError>

fn read_le_int_n(&mut self, nbytes: usize) -> Result<i64, IoError>

fn read_be_uint_n(&mut self, nbytes: usize) -> Result<u64, IoError>

fn read_be_int_n(&mut self, nbytes: usize) -> Result<i64, IoError>

fn read_le_uint(&mut self) -> Result<usize, IoError>

fn read_le_int(&mut self) -> Result<isize, IoError>

fn read_be_uint(&mut self) -> Result<usize, IoError>

fn read_be_int(&mut self) -> Result<isize, IoError>

fn read_be_u64(&mut self) -> Result<u64, IoError>

fn read_be_u32(&mut self) -> Result<u32, IoError>

fn read_be_u16(&mut self) -> Result<u16, IoError>

fn read_be_i64(&mut self) -> Result<i64, IoError>

fn read_be_i32(&mut self) -> Result<i32, IoError>

fn read_be_i16(&mut self) -> Result<i16, IoError>

fn read_be_f64(&mut self) -> Result<f64, IoError>

fn read_be_f32(&mut self) -> Result<f32, IoError>

fn read_le_u64(&mut self) -> Result<u64, IoError>

fn read_le_u32(&mut self) -> Result<u32, IoError>

fn read_le_u16(&mut self) -> Result<u16, IoError>

fn read_le_i64(&mut self) -> Result<i64, IoError>

fn read_le_i32(&mut self) -> Result<i32, IoError>

fn read_le_i16(&mut self) -> Result<i16, IoError>

fn read_le_f64(&mut self) -> Result<f64, IoError>

fn read_le_f32(&mut self) -> Result<f32, IoError>

fn read_u8(&mut self) -> Result<u8, IoError>

fn read_i8(&mut self) -> Result<i8, IoError>

impl<'a> IntoBody<'a> for Body<'a>

fn into_body(self) -> Body<'a>