pub struct RunResp {
pub error: Option<String>,
pub ok: Option<bool>,
pub output: Option<Value>,
}Fields§
§error: Option<String>Error is the connector-level failure message when not ok.
ok: Option<bool>Ok reports whether the action ran to completion.
output: Option<Value>Output is the action’s result when ok. Its shape is the action’s own.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunResp
impl<'de> Deserialize<'de> for RunResp
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
impl StructuralPartialEq for RunResp
Auto Trait Implementations§
impl Freeze for RunResp
impl RefUnwindSafe for RunResp
impl Send for RunResp
impl Sync for RunResp
impl Unpin for RunResp
impl UnsafeUnpin for RunResp
impl UnwindSafe for RunResp
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