pub struct ActionWorkflowRun {Show 19 fields
pub actor: Option<Box<User>>,
pub completed_at: Option<String>,
pub conclusion: Option<String>,
pub display_title: Option<String>,
pub event: Option<String>,
pub head_branch: Option<String>,
pub head_repository: Option<Box<Repository>>,
pub head_sha: Option<String>,
pub html_url: Option<String>,
pub id: Option<i64>,
pub path: Option<String>,
pub repository: Option<Box<Repository>>,
pub repository_id: Option<i64>,
pub run_attempt: Option<i64>,
pub run_number: Option<i64>,
pub started_at: Option<String>,
pub status: Option<String>,
pub trigger_actor: Option<Box<User>>,
pub url: Option<String>,
}Expand description
ActionWorkflowRun : ActionWorkflowRun represents a WorkflowRun
Fields§
§actor: Option<Box<User>>§completed_at: Option<String>§conclusion: Option<String>§display_title: Option<String>§event: Option<String>§head_branch: Option<String>§head_repository: Option<Box<Repository>>§head_sha: Option<String>§html_url: Option<String>§id: Option<i64>§path: Option<String>§repository: Option<Box<Repository>>§repository_id: Option<i64>§run_attempt: Option<i64>§run_number: Option<i64>§started_at: Option<String>§status: Option<String>§trigger_actor: Option<Box<User>>§url: Option<String>Implementations§
Source§impl ActionWorkflowRun
impl ActionWorkflowRun
Sourcepub fn new() -> ActionWorkflowRun
pub fn new() -> ActionWorkflowRun
ActionWorkflowRun represents a WorkflowRun
Trait Implementations§
Source§impl Clone for ActionWorkflowRun
impl Clone for ActionWorkflowRun
Source§fn clone(&self) -> ActionWorkflowRun
fn clone(&self) -> ActionWorkflowRun
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 ActionWorkflowRun
impl Debug for ActionWorkflowRun
Source§impl Default for ActionWorkflowRun
impl Default for ActionWorkflowRun
Source§fn default() -> ActionWorkflowRun
fn default() -> ActionWorkflowRun
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionWorkflowRun
impl<'de> Deserialize<'de> for ActionWorkflowRun
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 ActionWorkflowRun
impl PartialEq for ActionWorkflowRun
Source§fn eq(&self, other: &ActionWorkflowRun) -> bool
fn eq(&self, other: &ActionWorkflowRun) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActionWorkflowRun
impl Serialize for ActionWorkflowRun
impl StructuralPartialEq for ActionWorkflowRun
Auto Trait Implementations§
impl Freeze for ActionWorkflowRun
impl RefUnwindSafe for ActionWorkflowRun
impl Send for ActionWorkflowRun
impl Sync for ActionWorkflowRun
impl Unpin for ActionWorkflowRun
impl UnsafeUnpin for ActionWorkflowRun
impl UnwindSafe for ActionWorkflowRun
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