#![allow(clippy::needless_pass_by_value)] use serde_bytes::{ByteBuf, Bytes}; fn _bytes_eq_slice(bytes: &Bytes, slice: &[u8]) -> bool { bytes == slice } fn _bytebuf_eq_vec(bytebuf: ByteBuf, vec: Vec) -> bool { bytebuf == vec } fn _bytes_eq_bytestring(bytes: &Bytes) -> bool { bytes == b"..." }