1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 02:09:36 +00:00
actix-web/actix-http/src/encoding/mod.rs

38 lines
636 B
Rust
Raw Normal View History

2019-03-26 22:14:32 +00:00
//! Content-Encoding support
use std::io;
use bytes::{Bytes, BytesMut};
mod decoder;
mod encoder;
pub use self::decoder::Decoder;
pub use self::encoder::Encoder;
pub(self) struct Writer {
buf: BytesMut,
}
impl Writer {
fn new() -> Writer {
Writer {
buf: BytesMut::with_capacity(8192),
}
}
2019-12-20 07:50:07 +00:00
2019-03-26 22:14:32 +00:00
fn take(&mut self) -> Bytes {
2019-12-05 17:35:43 +00:00
self.buf.split().freeze()
2019-03-26 22:14:32 +00:00
}
}
impl io::Write for Writer {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.buf.extend_from_slice(buf);
Ok(buf.len())
}
2019-12-20 07:50:07 +00:00
2019-03-26 22:14:32 +00:00
fn flush(&mut self) -> io::Result<()> {
Ok(())
}
}