pub struct HTTPField {
pub name: String,
pub parameters: HTTPFieldParametersSet,
}Expand description
Represents an HTTP header, informally.
Fields§
§name: StringUniquely identified by name
parameters: HTTPFieldParametersSetParameters associated with this HTTPField. An ordered container is needed as order of serialization matters.
Trait Implementations§
impl Eq for HTTPField
impl StructuralPartialEq for HTTPField
Auto Trait Implementations§
impl Freeze for HTTPField
impl RefUnwindSafe for HTTPField
impl Send for HTTPField
impl Sync for HTTPField
impl Unpin for HTTPField
impl UnwindSafe for HTTPField
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.