Struct http::header::map::ExtraValue
source · struct ExtraValue<T> {
value: T,
prev: Link,
next: Link,
}
Expand description
Node in doubly-linked list of header value entries
Fields§
§value: T
§prev: Link
§next: Link
Trait Implementations§
source§impl<T: Clone> Clone for ExtraValue<T>
impl<T: Clone> Clone for ExtraValue<T>
source§fn clone(&self) -> ExtraValue<T>
fn clone(&self) -> ExtraValue<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<T> Freeze for ExtraValue<T>where
T: Freeze,
impl<T> RefUnwindSafe for ExtraValue<T>where
T: RefUnwindSafe,
impl<T> Send for ExtraValue<T>where
T: Send,
impl<T> Sync for ExtraValue<T>where
T: Sync,
impl<T> Unpin for ExtraValue<T>where
T: Unpin,
impl<T> UnwindSafe for ExtraValue<T>where
T: UnwindSafe,
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