mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
parent
e151b1eff1
commit
7960b550c9
84 changed files with 676 additions and 821 deletions
|
@ -1,5 +1,4 @@
|
|||
#![allow(
|
||||
clippy::derive_hash_xor_eq,
|
||||
clippy::should_implement_trait,
|
||||
clippy::no_effect,
|
||||
clippy::missing_safety_doc
|
||||
|
@ -8,6 +7,7 @@ use std::{cmp, error::Error, fmt, str, str::FromStr};
|
|||
|
||||
use ntex_bytes::{ByteString, Bytes};
|
||||
|
||||
#[allow(clippy::derived_hash_with_manual_eq)]
|
||||
/// Represents an HTTP header field value.
|
||||
///
|
||||
/// In practice, HTTP header field values are usually valid ASCII. However, the
|
||||
|
@ -17,7 +17,7 @@ use ntex_bytes::{ByteString, Bytes};
|
|||
/// To handle this, the `HeaderValue` is useable as a type and can be compared
|
||||
/// with strings and implements `Debug`. A `to_str` fn is provided that returns
|
||||
/// an `Err` if the header value contains non visible ascii characters.
|
||||
#[derive(Clone, Hash)]
|
||||
#[derive(Clone, Hash, Eq)]
|
||||
pub struct HeaderValue {
|
||||
inner: Bytes,
|
||||
is_sensitive: bool,
|
||||
|
@ -542,8 +542,6 @@ impl PartialEq for HeaderValue {
|
|||
}
|
||||
}
|
||||
|
||||
impl Eq for HeaderValue {}
|
||||
|
||||
impl PartialOrd for HeaderValue {
|
||||
#[inline]
|
||||
fn partial_cmp(&self, other: &HeaderValue) -> Option<cmp::Ordering> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue