pub struct ApiHttpHeader {
pub name: String,
pub value: String,
}Expand description
ApiHttpHeader
Fields§
§name: String§value: StringTrait Implementations§
Source§impl CandidType for ApiHttpHeader
impl CandidType for ApiHttpHeader
Source§impl Clone for ApiHttpHeader
impl Clone for ApiHttpHeader
Source§fn clone(&self) -> ApiHttpHeader
fn clone(&self) -> ApiHttpHeader
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 ApiHttpHeader
impl Debug for ApiHttpHeader
Source§impl<'de> Deserialize<'de> for ApiHttpHeader
impl<'de> Deserialize<'de> for ApiHttpHeader
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 ApiHttpHeader
impl RefUnwindSafe for ApiHttpHeader
impl Send for ApiHttpHeader
impl Sync for ApiHttpHeader
impl Unpin for ApiHttpHeader
impl UnwindSafe for ApiHttpHeader
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