pub struct HttpActionHeader {
pub key: String,
pub value: String,
}Expand description
The HTTP action header.
Fields§
§key: StringThe HTTP header key.
value: StringThe HTTP header value. Substitution templates are supported.
Trait Implementations§
Source§impl Clone for HttpActionHeader
impl Clone for HttpActionHeader
Source§fn clone(&self) -> HttpActionHeader
fn clone(&self) -> HttpActionHeader
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 HttpActionHeader
impl Debug for HttpActionHeader
Source§impl Default for HttpActionHeader
impl Default for HttpActionHeader
Source§fn default() -> HttpActionHeader
fn default() -> HttpActionHeader
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HttpActionHeader
impl<'de> Deserialize<'de> for HttpActionHeader
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 HttpActionHeader
impl PartialEq for HttpActionHeader
Source§impl Serialize for HttpActionHeader
impl Serialize for HttpActionHeader
impl StructuralPartialEq for HttpActionHeader
Auto Trait Implementations§
impl Freeze for HttpActionHeader
impl RefUnwindSafe for HttpActionHeader
impl Send for HttpActionHeader
impl Sync for HttpActionHeader
impl Unpin for HttpActionHeader
impl UnwindSafe for HttpActionHeader
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