mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-09-01 00:00:11 +02:00
Address various clippy warnings (#528)
This commit is contained in:
+1
-1
@@ -46,7 +46,7 @@ impl TestBuf {
|
||||
}
|
||||
impl Buf for TestBuf {
|
||||
fn remaining(&self) -> usize {
|
||||
return self.buf.len() - self.pos;
|
||||
self.buf.len() - self.pos
|
||||
}
|
||||
fn advance(&mut self, cnt: usize) {
|
||||
self.pos += cnt;
|
||||
|
||||
@@ -88,6 +88,7 @@ fn from_long_slice(b: &mut Bencher) {
|
||||
#[bench]
|
||||
fn slice_empty(b: &mut Bencher) {
|
||||
b.iter(|| {
|
||||
// `clone` is to convert to ARC
|
||||
let b = Bytes::from(vec![17; 1024]).clone();
|
||||
for i in 0..1000 {
|
||||
test::black_box(b.slice(i % 100..i % 100));
|
||||
|
||||
Reference in New Issue
Block a user