pub struct DispatchWorkflowRun {
pub id: Option<i64>,
pub jobs: Option<Vec<String>>,
pub run_number: Option<i64>,
}Expand description
DispatchWorkflowRun represents a workflow run
Fields§
§id: Option<i64>the workflow run id
jobs: Option<Vec<String>>the jobs name
run_number: Option<i64>a unique number for each run of a repository
Trait Implementations§
Source§impl Clone for DispatchWorkflowRun
impl Clone for DispatchWorkflowRun
Source§fn clone(&self) -> DispatchWorkflowRun
fn clone(&self) -> DispatchWorkflowRun
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 DispatchWorkflowRun
impl Debug for DispatchWorkflowRun
Source§impl<'de> Deserialize<'de> for DispatchWorkflowRun
impl<'de> Deserialize<'de> for DispatchWorkflowRun
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 FromResponse for DispatchWorkflowRun
impl FromResponse for DispatchWorkflowRun
fn from_response( response: ApiResponse, has_body: bool, ) -> Result<Self, StructureError>
Source§impl PartialEq for DispatchWorkflowRun
impl PartialEq for DispatchWorkflowRun
Source§impl Serialize for DispatchWorkflowRun
impl Serialize for DispatchWorkflowRun
impl StructuralPartialEq for DispatchWorkflowRun
Auto Trait Implementations§
impl Freeze for DispatchWorkflowRun
impl RefUnwindSafe for DispatchWorkflowRun
impl Send for DispatchWorkflowRun
impl Sync for DispatchWorkflowRun
impl Unpin for DispatchWorkflowRun
impl UnwindSafe for DispatchWorkflowRun
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