pub struct ActionTask {Show 13 fields
pub created_at: Option<String>,
pub display_title: Option<String>,
pub event: Option<String>,
pub head_branch: Option<String>,
pub head_sha: Option<String>,
pub id: Option<i64>,
pub name: Option<String>,
pub run_number: Option<i64>,
pub run_started_at: Option<String>,
pub status: Option<String>,
pub updated_at: Option<String>,
pub url: Option<String>,
pub workflow_id: Option<String>,
}Expand description
ActionTask : ActionTask represents a ActionTask
Fields§
§created_at: Option<String>§display_title: Option<String>DisplayTitle is the display title for the workflow run
event: Option<String>Event is the type of event that triggered the workflow
head_branch: Option<String>HeadBranch is the branch that triggered the workflow
head_sha: Option<String>HeadSHA is the commit SHA that triggered the workflow
id: Option<i64>ID is the unique identifier for the action task
name: Option<String>Name is the name of the workflow
run_number: Option<i64>RunNumber is the sequential number of the workflow run
run_started_at: Option<String>§status: Option<String>Status indicates the current status of the workflow run
updated_at: Option<String>§url: Option<String>URL is the API URL for this workflow run
workflow_id: Option<String>WorkflowID is the identifier of the workflow
Implementations§
Source§impl ActionTask
impl ActionTask
Sourcepub fn new() -> ActionTask
pub fn new() -> ActionTask
ActionTask represents a ActionTask
Trait Implementations§
Source§impl Clone for ActionTask
impl Clone for ActionTask
Source§fn clone(&self) -> ActionTask
fn clone(&self) -> ActionTask
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionTask
impl Debug for ActionTask
Source§impl Default for ActionTask
impl Default for ActionTask
Source§fn default() -> ActionTask
fn default() -> ActionTask
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionTask
impl<'de> Deserialize<'de> for ActionTask
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 ActionTask
impl PartialEq for ActionTask
Source§fn eq(&self, other: &ActionTask) -> bool
fn eq(&self, other: &ActionTask) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActionTask
impl Serialize for ActionTask
impl StructuralPartialEq for ActionTask
Auto Trait Implementations§
impl Freeze for ActionTask
impl RefUnwindSafe for ActionTask
impl Send for ActionTask
impl Sync for ActionTask
impl Unpin for ActionTask
impl UnsafeUnpin for ActionTask
impl UnwindSafe for ActionTask
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