pub struct FetchHeaderEntry {
pub name: String,
pub value: String,
}Expand description
Typed fetch response header entry.
Fields§
§name: StringHeader name.
value: StringHeader value.
Trait Implementations§
Source§impl Clone for FetchHeaderEntry
impl Clone for FetchHeaderEntry
Source§fn clone(&self) -> FetchHeaderEntry
fn clone(&self) -> FetchHeaderEntry
Returns a duplicate 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 moreSource§impl Debug for FetchHeaderEntry
impl Debug for FetchHeaderEntry
Source§impl<'de> Deserialize<'de> for FetchHeaderEntry
impl<'de> Deserialize<'de> for FetchHeaderEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FetchHeaderEntry
impl PartialEq for FetchHeaderEntry
Source§impl Serialize for FetchHeaderEntry
impl Serialize for FetchHeaderEntry
impl Eq for FetchHeaderEntry
impl StructuralPartialEq for FetchHeaderEntry
Auto Trait Implementations§
impl Freeze for FetchHeaderEntry
impl RefUnwindSafe for FetchHeaderEntry
impl Send for FetchHeaderEntry
impl Sync for FetchHeaderEntry
impl Unpin for FetchHeaderEntry
impl UnsafeUnpin for FetchHeaderEntry
impl UnwindSafe for FetchHeaderEntry
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