pub struct DispatchWorkflowOption {
pub inputs: Option<BTreeMap<String, String>>,
pub ref: String,
}Expand description
DispatchWorkflowOption options when dispatching a workflow
Fields§
§inputs: Option<BTreeMap<String, String>>Input keys and values configured in the workflow file.
ref: StringGit reference for the workflow
Trait Implementations§
Source§impl Clone for DispatchWorkflowOption
impl Clone for DispatchWorkflowOption
Source§fn clone(&self) -> DispatchWorkflowOption
fn clone(&self) -> DispatchWorkflowOption
Returns a duplicate of the value. Read more
1.0.0 · 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 DispatchWorkflowOption
impl Debug for DispatchWorkflowOption
Source§impl<'de> Deserialize<'de> for DispatchWorkflowOption
impl<'de> Deserialize<'de> for DispatchWorkflowOption
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 PartialEq for DispatchWorkflowOption
impl PartialEq for DispatchWorkflowOption
Source§impl Serialize for DispatchWorkflowOption
impl Serialize for DispatchWorkflowOption
impl StructuralPartialEq for DispatchWorkflowOption
Auto Trait Implementations§
impl Freeze for DispatchWorkflowOption
impl RefUnwindSafe for DispatchWorkflowOption
impl Send for DispatchWorkflowOption
impl Sync for DispatchWorkflowOption
impl Unpin for DispatchWorkflowOption
impl UnwindSafe for DispatchWorkflowOption
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