15 lines
313 B
Rust
15 lines
313 B
Rust
#![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<u8>) -> bool {
|
|
bytebuf == vec
|
|
}
|
|
|
|
fn _bytes_eq_bytestring(bytes: &Bytes) -> bool {
|
|
bytes == b"..."
|
|
}
|