pub struct DispatchResponse {
pub result: Option<Value>,
pub control: Option<String>,
pub message: Option<String>,
}Expand description
Wire-safe result of one connector dispatch.
Fields§
§result: Option<Value>Successful connector or replay result.
control: Option<String>Control signal consumed by the sandbox proxy.
message: Option<String>Host-side connector or runtime error.
Trait Implementations§
Source§impl Clone for DispatchResponse
impl Clone for DispatchResponse
Source§impl Debug for DispatchResponse
impl Debug for DispatchResponse
Source§impl<'de> Deserialize<'de> for DispatchResponse
impl<'de> Deserialize<'de> for DispatchResponse
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 DispatchResponse
impl RefUnwindSafe for DispatchResponse
impl Send for DispatchResponse
impl Sync for DispatchResponse
impl Unpin for DispatchResponse
impl UnsafeUnpin for DispatchResponse
impl UnwindSafe for DispatchResponse
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