pub struct HttpHeader {
pub name: String,
pub value: String,
}Expand description
HttpHeader
Fields§
§name: String§value: StringTrait Implementations§
Source§impl CandidType for HttpHeader
impl CandidType for HttpHeader
Source§impl Clone for HttpHeader
impl Clone for HttpHeader
Source§fn clone(&self) -> HttpHeader
fn clone(&self) -> HttpHeader
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 HttpHeader
impl Debug for HttpHeader
Source§impl<'de> Deserialize<'de> for HttpHeader
impl<'de> Deserialize<'de> for HttpHeader
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 From<ApiHttpHeader> for HttpHeader
impl From<ApiHttpHeader> for HttpHeader
Source§fn from(header: ApiHttpHeader) -> Self
fn from(header: ApiHttpHeader) -> Self
Converts to this type from the input type.
Source§impl From<HttpHeader> for ApiHttpHeader
impl From<HttpHeader> for ApiHttpHeader
Source§fn from(header: HttpHeader) -> Self
fn from(header: HttpHeader) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HttpHeader
impl RefUnwindSafe for HttpHeader
impl Send for HttpHeader
impl Sync for HttpHeader
impl Unpin for HttpHeader
impl UnwindSafe for HttpHeader
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