pub struct ActionsCreateWorkflowDispatchRequest {
pub ref: String,
pub inputs: Option<HashMap<String, Value>>,
}
Fields§
§ref: String
The git reference for the workflow. The reference can be a branch or tag name.
inputs: Option<HashMap<String, Value>>
Input keys and values configured in the workflow file. The maximum number of properties is 10. Any default properties configured in the workflow file will be used when inputs
are omitted.
Implementations§
Trait Implementations§
Source§impl Clone for ActionsCreateWorkflowDispatchRequest
impl Clone for ActionsCreateWorkflowDispatchRequest
Source§fn clone(&self) -> ActionsCreateWorkflowDispatchRequest
fn clone(&self) -> ActionsCreateWorkflowDispatchRequest
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 Default for ActionsCreateWorkflowDispatchRequest
impl Default for ActionsCreateWorkflowDispatchRequest
Source§fn default() -> ActionsCreateWorkflowDispatchRequest
fn default() -> ActionsCreateWorkflowDispatchRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionsCreateWorkflowDispatchRequest
impl<'de> Deserialize<'de> for ActionsCreateWorkflowDispatchRequest
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 ActionsCreateWorkflowDispatchRequest
impl PartialEq for ActionsCreateWorkflowDispatchRequest
Source§fn eq(&self, other: &ActionsCreateWorkflowDispatchRequest) -> bool
fn eq(&self, other: &ActionsCreateWorkflowDispatchRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ActionsCreateWorkflowDispatchRequest
Auto Trait Implementations§
impl Freeze for ActionsCreateWorkflowDispatchRequest
impl RefUnwindSafe for ActionsCreateWorkflowDispatchRequest
impl Send for ActionsCreateWorkflowDispatchRequest
impl Sync for ActionsCreateWorkflowDispatchRequest
impl Unpin for ActionsCreateWorkflowDispatchRequest
impl UnwindSafe for ActionsCreateWorkflowDispatchRequest
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