1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-28 14:30:36 +02:00

Improve bcodec encode performance (#157)

This commit is contained in:
Juan Aguilar
2020-07-19 21:36:51 +00:00
committed by GitHub
parent a67e38b4a0
commit 8d0bd7ce1c
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
use bytes::{BufMut, Bytes, BytesMut};
use bytes::{Bytes, BytesMut, Buf};
use std::io;
use super::{Decoder, Encoder};
@ -12,9 +12,9 @@ pub struct BytesCodec;
impl Encoder<Bytes> for BytesCodec {
type Error = io::Error;
#[inline]
fn encode(&mut self, item: Bytes, dst: &mut BytesMut) -> Result<(), Self::Error> {
dst.reserve(item.len());
dst.put(item);
dst.extend_from_slice(item.bytes());
Ok(())
}
}