1use crate::{BufRead, Read};
23/// Read is implemented for `&[u8]` by copying from the slice.
4///
5/// Note that reading updates the slice to point to the yet unread part.
6/// The slice will be empty when EOF is reached.
7impl Read for &[u8] {
8#[inline]
9async fn read(&mut self, buf: &mut [u8]) -> Result<usize, Self::Error> {
10let amt = core::cmp::min(buf.len(), self.len());
11let (a, b) = self.split_at(amt);
1213// First check if the amount of bytes we want to read is small:
14 // `copy_from_slice` will generally expand to a call to `memcpy`, and
15 // for a single byte the overhead is significant.
16if amt == 1 {
17 buf[0] = a[0];
18 } else {
19 buf[..amt].copy_from_slice(a);
20 }
2122*self = b;
23Ok(amt)
24 }
25}
2627impl BufRead for &[u8] {
28#[inline]
29async fn fill_buf(&mut self) -> Result<&[u8], Self::Error> {
30Ok(*self)
31 }
3233#[inline]
34fn consume(&mut self, amt: usize) {
35*self = &self[amt..];
36 }
37}