Skip to content

Commit 4d66d5d

Browse files
paolobarboliniseanmonstar
authored andcommitted
style: replace split_to and split_off with better alternatives
This removes `let _ = ` from in front of `split_to` and `split_off` and mostly follows the suggestions from the `#[must_use]` impls. One of the uses of `split_to` is instead replaced with `take`.
1 parent 77be664 commit 4d66d5d

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

src/codec/framed_read.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::hpack;
88

99
use futures_core::Stream;
1010

11-
use bytes::BytesMut;
11+
use bytes::{Buf, BytesMut};
1212

1313
use std::io;
1414

@@ -146,8 +146,7 @@ fn decode_frame(
146146
macro_rules! header_block {
147147
($frame:ident, $head:ident, $bytes:ident) => ({
148148
// Drop the frame header
149-
// TODO: Change to drain: carllerche/bytes#130
150-
let _ = $bytes.split_to(frame::HEADER_LEN);
149+
$bytes.advance(frame::HEADER_LEN);
151150

152151
// Parse the header frame w/o parsing the payload
153152
let (mut frame, mut payload) = match frame::$frame::load($head, $bytes) {
@@ -227,7 +226,7 @@ fn decode_frame(
227226
.into()
228227
}
229228
Kind::Data => {
230-
let _ = bytes.split_to(frame::HEADER_LEN);
229+
bytes.advance(frame::HEADER_LEN);
231230
let res = frame::Data::load(head, bytes.freeze());
232231

233232
// TODO: Should this always be connection level? Probably not...

src/frame/headers.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::hpack::{self, BytesStr};
66
use http::header::{self, HeaderName, HeaderValue};
77
use http::{uri, HeaderMap, Method, Request, StatusCode, Uri};
88

9-
use bytes::{BufMut, Bytes, BytesMut};
9+
use bytes::{Buf, BufMut, Bytes, BytesMut};
1010

1111
use std::fmt;
1212
use std::io::Cursor;
@@ -166,7 +166,7 @@ impl Headers {
166166
pad = src[0] as usize;
167167

168168
// Drop the padding
169-
let _ = src.split_to(1);
169+
src.advance(1);
170170
}
171171

172172
// Read the stream dependency
@@ -181,7 +181,7 @@ impl Headers {
181181
}
182182

183183
// Drop the next 5 bytes
184-
let _ = src.split_to(5);
184+
src.advance(5);
185185

186186
Some(stream_dep)
187187
} else {
@@ -425,7 +425,7 @@ impl PushPromise {
425425
pad = src[0] as usize;
426426

427427
// Drop the padding
428-
let _ = src.split_to(1);
428+
src.advance(1);
429429
}
430430

431431
if src.len() < 5 {
@@ -434,7 +434,7 @@ impl PushPromise {
434434

435435
let (promised_id, _) = StreamId::parse(&src[..4]);
436436
// Drop promised_id bytes
437-
let _ = src.split_to(4);
437+
src.advance(4);
438438

439439
if pad > 0 {
440440
if pad > src.len() {
@@ -657,7 +657,7 @@ impl EncodingHeaderBlock {
657657

658658
// Now, encode the header payload
659659
let continuation = if self.hpack.len() > dst.remaining_mut() {
660-
dst.put_slice(&self.hpack.split_to(dst.remaining_mut()));
660+
dst.put((&mut self.hpack).take(dst.remaining_mut()));
661661

662662
Some(Continuation {
663663
stream_id: head.stream_id(),

src/frame/util.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::fmt;
22

33
use super::Error;
4-
use bytes::Bytes;
4+
use bytes::{Buf, Bytes};
55

66
/// Strip padding from the given payload.
77
///
@@ -32,8 +32,8 @@ pub fn strip_padding(payload: &mut Bytes) -> Result<u8, Error> {
3232
return Err(Error::TooMuchPadding);
3333
}
3434

35-
let _ = payload.split_to(1);
36-
let _ = payload.split_off(payload_len - pad_len - 1);
35+
payload.advance(1);
36+
payload.truncate(payload_len - pad_len - 1);
3737

3838
Ok(pad_len as u8)
3939
}

0 commit comments

Comments
 (0)