pub struct EndpointHeadersOut {
pub headers: HashMap<String, String>,
pub sensitive: Vec<String>,
}
Expand description
EndpointHeadersOut : The value of the headers is returned in the headers
field. Sensitive headers that have been redacted are returned in the sensitive field.
Fields§
§headers: HashMap<String, String>
§sensitive: Vec<String>
Implementations§
Trait Implementations§
Source§impl Clone for EndpointHeadersOut
impl Clone for EndpointHeadersOut
Source§fn clone(&self) -> EndpointHeadersOut
fn clone(&self) -> EndpointHeadersOut
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 EndpointHeadersOut
impl Debug for EndpointHeadersOut
Source§impl Default for EndpointHeadersOut
impl Default for EndpointHeadersOut
Source§fn default() -> EndpointHeadersOut
fn default() -> EndpointHeadersOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndpointHeadersOut
impl<'de> Deserialize<'de> for EndpointHeadersOut
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 EndpointHeadersOut
impl PartialEq for EndpointHeadersOut
Source§impl Serialize for EndpointHeadersOut
impl Serialize for EndpointHeadersOut
impl StructuralPartialEq for EndpointHeadersOut
Auto Trait Implementations§
impl Freeze for EndpointHeadersOut
impl RefUnwindSafe for EndpointHeadersOut
impl Send for EndpointHeadersOut
impl Sync for EndpointHeadersOut
impl Unpin for EndpointHeadersOut
impl UnwindSafe for EndpointHeadersOut
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