pub struct HookDeliveryResponse {
pub headers: Option<HashMap<String, Value>>,
pub payload: Option<HashMap<String, Value>>,
}
Fields§
§headers: Option<HashMap<String, Value>>
The response headers received when the delivery was made.
payload: Option<HashMap<String, Value>>
The response payload received.
Implementations§
Trait Implementations§
Source§impl Clone for HookDeliveryResponse
impl Clone for HookDeliveryResponse
Source§fn clone(&self) -> HookDeliveryResponse
fn clone(&self) -> HookDeliveryResponse
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 HookDeliveryResponse
impl Debug for HookDeliveryResponse
Source§impl Default for HookDeliveryResponse
impl Default for HookDeliveryResponse
Source§fn default() -> HookDeliveryResponse
fn default() -> HookDeliveryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HookDeliveryResponse
impl<'de> Deserialize<'de> for HookDeliveryResponse
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 HookDeliveryResponse
impl PartialEq for HookDeliveryResponse
Source§impl Serialize for HookDeliveryResponse
impl Serialize for HookDeliveryResponse
impl StructuralPartialEq for HookDeliveryResponse
Auto Trait Implementations§
impl Freeze for HookDeliveryResponse
impl RefUnwindSafe for HookDeliveryResponse
impl Send for HookDeliveryResponse
impl Sync for HookDeliveryResponse
impl Unpin for HookDeliveryResponse
impl UnwindSafe for HookDeliveryResponse
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