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