mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Enable rustls/std feature (#494)
This commit is contained in:
parent
48702413f3
commit
5fd9d7ce90
15 changed files with 35 additions and 31 deletions
|
@ -3779,7 +3779,7 @@ impl<const N: usize> PartialEq<BytesMut> for [u8; N] {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a, const N: usize> PartialEq<BytesMut> for &'a [u8; N] {
|
||||
impl<const N: usize> PartialEq<BytesMut> for &[u8; N] {
|
||||
fn eq(&self, other: &BytesMut) -> bool {
|
||||
*other == *self
|
||||
}
|
||||
|
@ -3878,7 +3878,7 @@ impl<const N: usize> PartialEq<Bytes> for [u8; N] {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a, const N: usize> PartialEq<Bytes> for &'a [u8; N] {
|
||||
impl<const N: usize> PartialEq<Bytes> for &[u8; N] {
|
||||
fn eq(&self, other: &Bytes) -> bool {
|
||||
*other == *self
|
||||
}
|
||||
|
@ -4076,7 +4076,7 @@ impl<const N: usize> PartialEq<BytesVec> for [u8; N] {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a, const N: usize> PartialEq<BytesVec> for &'a [u8; N] {
|
||||
impl<const N: usize> PartialEq<BytesVec> for &[u8; N] {
|
||||
fn eq(&self, other: &BytesVec) -> bool {
|
||||
*other == *self
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ use std::fmt::{Formatter, LowerHex, Result, UpperHex};
|
|||
|
||||
struct BytesRef<'a>(&'a [u8]);
|
||||
|
||||
impl<'a> LowerHex for BytesRef<'a> {
|
||||
impl LowerHex for BytesRef<'_> {
|
||||
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
|
||||
for b in self.0 {
|
||||
write!(f, "{b:02x}")?;
|
||||
|
@ -12,7 +12,7 @@ impl<'a> LowerHex for BytesRef<'a> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a> UpperHex for BytesRef<'a> {
|
||||
impl UpperHex for BytesRef<'_> {
|
||||
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
|
||||
for b in self.0 {
|
||||
write!(f, "{b:02X}")?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue