pub struct AttachmentGitHubActionsJob {
pub conclusion: Option<String>,
pub job_id: i64,
pub job_name: String,
pub repo: GitHubRepoRef,
pub type: AttachmentGitHubActionsJobType,
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: GitHubRepoRefRepository the workflow run belongs to
type: AttachmentGitHubActionsJobTypeAttachment 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 AttachmentGitHubActionsJob
impl Clone for AttachmentGitHubActionsJob
Source§fn clone(&self) -> AttachmentGitHubActionsJob
fn clone(&self) -> AttachmentGitHubActionsJob
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 AttachmentGitHubActionsJob
impl Debug for AttachmentGitHubActionsJob
Source§impl Default for AttachmentGitHubActionsJob
impl Default for AttachmentGitHubActionsJob
Source§fn default() -> AttachmentGitHubActionsJob
fn default() -> AttachmentGitHubActionsJob
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachmentGitHubActionsJob
impl<'de> Deserialize<'de> for AttachmentGitHubActionsJob
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 AttachmentGitHubActionsJob
impl RefUnwindSafe for AttachmentGitHubActionsJob
impl Send for AttachmentGitHubActionsJob
impl Sync for AttachmentGitHubActionsJob
impl Unpin for AttachmentGitHubActionsJob
impl UnsafeUnpin for AttachmentGitHubActionsJob
impl UnwindSafe for AttachmentGitHubActionsJob
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