pub struct WorkflowCallInput {
pub description: Option<String>,
pub required: bool,
pub type: String,
}
Expand description
A single input in a workflow_call
event trigger body.
Fields§
§description: Option<String>
§required: bool
§type: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WorkflowCallInput
impl<'de> Deserialize<'de> for WorkflowCallInput
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 WorkflowCallInput
impl RefUnwindSafe for WorkflowCallInput
impl Send for WorkflowCallInput
impl Sync for WorkflowCallInput
impl Unpin for WorkflowCallInput
impl UnwindSafe for WorkflowCallInput
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