mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
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:
parent
2feda6a5ab
commit
d0da3f3ec1
1 changed files with 3 additions and 3 deletions
|
@ -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(())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue