pub trait BodyExt {
    fn consume_into_vec(
        &mut self,
        _buffer: &mut Vec<u8>,
        _runtime: Option<&Runtime>
    ) -> ServerResult; fn consume_to_vec(
        &mut self,
        _runtime: Option<&Runtime>
    ) -> ServerResult<Vec<u8>> { ... } }

Required Methods

Provided Methods

Implementors