pub struct PushAttachmentGitHubActionsJob {
pub conclusion: Option<String>,
pub job_id: i64,
pub job_name: String,
pub repo: PushGitHubRepoRef,
pub type: PushAttachmentGitHubActionsJobType,
pub url: String,
pub workflow_name: String,
}Expand description
Pointer to a GitHub Actions job.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§conclusion: Option<String>Terminal conclusion of the job when finished (e.g., success, failure, cancelled). Absent for in-progress jobs.
job_id: i64Job id within the workflow run
job_name: StringDisplay name of the job
repo: PushGitHubRepoRefRepository the workflow run belongs to
type: PushAttachmentGitHubActionsJobTypeAttachment type discriminator
url: StringURL to the job on GitHub
workflow_name: StringDisplay name of the workflow the job ran in
Trait Implementations§
Source§impl Clone for PushAttachmentGitHubActionsJob
impl Clone for PushAttachmentGitHubActionsJob
Source§fn clone(&self) -> PushAttachmentGitHubActionsJob
fn clone(&self) -> PushAttachmentGitHubActionsJob
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 Default for PushAttachmentGitHubActionsJob
impl Default for PushAttachmentGitHubActionsJob
Source§fn default() -> PushAttachmentGitHubActionsJob
fn default() -> PushAttachmentGitHubActionsJob
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PushAttachmentGitHubActionsJob
impl<'de> Deserialize<'de> for PushAttachmentGitHubActionsJob
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
Auto Trait Implementations§
impl Freeze for PushAttachmentGitHubActionsJob
impl RefUnwindSafe for PushAttachmentGitHubActionsJob
impl Send for PushAttachmentGitHubActionsJob
impl Sync for PushAttachmentGitHubActionsJob
impl Unpin for PushAttachmentGitHubActionsJob
impl UnsafeUnpin for PushAttachmentGitHubActionsJob
impl UnwindSafe for PushAttachmentGitHubActionsJob
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