pub struct WorkflowCall {
pub inputs: IndexMap<String, WorkflowCallInput>,
pub outputs: IndexMap<String, WorkflowCallOutput>,
pub secrets: IndexMap<String, Option<WorkflowCallSecret>>,
}
Expand description
The body of a workflow_call
event trigger.
Fields§
§inputs: IndexMap<String, WorkflowCallInput>
§outputs: IndexMap<String, WorkflowCallOutput>
§secrets: IndexMap<String, Option<WorkflowCallSecret>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WorkflowCall
impl<'de> Deserialize<'de> for WorkflowCall
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 WorkflowCall
impl RefUnwindSafe for WorkflowCall
impl Send for WorkflowCall
impl Sync for WorkflowCall
impl Unpin for WorkflowCall
impl UnwindSafe for WorkflowCall
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