pub struct ServiceBusForwardResponse {
pub message_type: String,
pub payload: HashMap<String, Value>,
}Expand description
Forward response payload returned by the service bus.
Fields§
§message_type: StringResponse message type.
payload: HashMap<String, Value>Free-form response payload.
Trait Implementations§
Source§impl Clone for ServiceBusForwardResponse
impl Clone for ServiceBusForwardResponse
Source§fn clone(&self) -> ServiceBusForwardResponse
fn clone(&self) -> ServiceBusForwardResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ServiceBusForwardResponse
impl Debug for ServiceBusForwardResponse
Source§impl<'de> Deserialize<'de> for ServiceBusForwardResponse
impl<'de> Deserialize<'de> for ServiceBusForwardResponse
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
Auto Trait Implementations§
impl Freeze for ServiceBusForwardResponse
impl RefUnwindSafe for ServiceBusForwardResponse
impl Send for ServiceBusForwardResponse
impl Sync for ServiceBusForwardResponse
impl Unpin for ServiceBusForwardResponse
impl UnsafeUnpin for ServiceBusForwardResponse
impl UnwindSafe for ServiceBusForwardResponse
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