pub struct ExecuteBody {
pub payload: WorkflowExecutePayload,
}Expand description
ExecuteBody
JSON schema
{
"type": "object",
"required": [
"payload"
],
"properties": {
"payload": {
"$ref": "#/components/schemas/WorkflowExecutePayload"
}
}
}Fields§
§payload: WorkflowExecutePayloadImplementations§
Source§impl ExecuteBody
impl ExecuteBody
pub fn builder() -> ExecuteBody
Trait Implementations§
Source§impl Clone for ExecuteBody
impl Clone for ExecuteBody
Source§fn clone(&self) -> ExecuteBody
fn clone(&self) -> ExecuteBody
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 ExecuteBody
impl Debug for ExecuteBody
Source§impl<'de> Deserialize<'de> for ExecuteBody
impl<'de> Deserialize<'de> for ExecuteBody
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 From<ExecuteBody> for ExecuteBody
impl From<ExecuteBody> for ExecuteBody
Source§fn from(value: ExecuteBody) -> Self
fn from(value: ExecuteBody) -> Self
Converts to this type from the input type.
Source§impl Serialize for ExecuteBody
impl Serialize for ExecuteBody
Source§impl TryFrom<ExecuteBody> for ExecuteBody
impl TryFrom<ExecuteBody> for ExecuteBody
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ExecuteBody) -> Result<Self, ConversionError>
fn try_from(value: ExecuteBody) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ExecuteBody
impl RefUnwindSafe for ExecuteBody
impl Send for ExecuteBody
impl Sync for ExecuteBody
impl Unpin for ExecuteBody
impl UnsafeUnpin for ExecuteBody
impl UnwindSafe for ExecuteBody
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