mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07: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
|
@ -354,13 +354,13 @@ impl AsName for HeaderName {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a> AsName for &'a HeaderName {
|
||||
impl AsName for &HeaderName {
|
||||
fn as_name(&self) -> Either<&HeaderName, &str> {
|
||||
Either::Left(self)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> AsName for &'a str {
|
||||
impl AsName for &str {
|
||||
fn as_name(&self) -> Either<&HeaderName, &str> {
|
||||
Either::Right(self)
|
||||
}
|
||||
|
@ -372,7 +372,7 @@ impl AsName for String {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a> AsName for &'a String {
|
||||
impl AsName for &String {
|
||||
fn as_name(&self) -> Either<&HeaderName, &str> {
|
||||
Either::Right(self.as_str())
|
||||
}
|
||||
|
|
|
@ -158,7 +158,7 @@ impl<'de> Deserialize<'de> for HeaderValue {
|
|||
|
||||
struct HeaderValueVisitor;
|
||||
|
||||
impl<'de> Visitor<'de> for HeaderValueVisitor {
|
||||
impl Visitor<'_> for HeaderValueVisitor {
|
||||
type Value = HeaderValue;
|
||||
|
||||
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
|
|
|
@ -641,14 +641,14 @@ impl PartialOrd<HeaderValue> for String {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a> PartialEq<HeaderValue> for &'a HeaderValue {
|
||||
impl PartialEq<HeaderValue> for &HeaderValue {
|
||||
#[inline]
|
||||
fn eq(&self, other: &HeaderValue) -> bool {
|
||||
**self == *other
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> PartialOrd<HeaderValue> for &'a HeaderValue {
|
||||
impl PartialOrd<HeaderValue> for &HeaderValue {
|
||||
#[inline]
|
||||
fn partial_cmp(&self, other: &HeaderValue) -> Option<cmp::Ordering> {
|
||||
(**self).partial_cmp(other)
|
||||
|
@ -675,14 +675,14 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a> PartialEq<HeaderValue> for &'a str {
|
||||
impl PartialEq<HeaderValue> for &str {
|
||||
#[inline]
|
||||
fn eq(&self, other: &HeaderValue) -> bool {
|
||||
*other == *self
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> PartialOrd<HeaderValue> for &'a str {
|
||||
impl PartialOrd<HeaderValue> for &str {
|
||||
#[inline]
|
||||
fn partial_cmp(&self, other: &HeaderValue) -> Option<cmp::Ordering> {
|
||||
self.as_bytes().partial_cmp(other.as_bytes())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue