Improve bcodec encode performance (#22)

Remove repeat calls to `reverve` method. Stop treating `item`
since it has the assured drop. Add the inline attribute because the
resulting body is just one line.
This commit is contained in:
Juan Aguilar 2020-07-19 09:50:17 +00:00 committed by GitHub
parent 2feda6a5ab
commit d0da3f3ec1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
use bytes::{BufMut, Bytes, BytesMut};
use bytes::{Bytes, BytesMut, Buf};
use std::io;
use super::{Decoder, Encoder};
@ -13,9 +13,9 @@ impl Encoder for BytesCodec {
type Item = Bytes;
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(())
}
}