Struct github_rest::model::repositories::workflows::events::nested::WorkflowRun
source · pub struct WorkflowRun {Show 30 fields
pub id: i64,
pub name: String,
pub node_id: String,
pub head_branch: String,
pub head_sha: String,
pub run_number: i64,
pub event: String,
pub status: String,
pub conclusion: Value,
pub workflow_id: i64,
pub check_suite_id: i64,
pub check_suite_node_id: String,
pub url: String,
pub html_url: String,
pub pull_requests: Vec<Value>,
pub created_at: String,
pub updated_at: String,
pub run_attempt: i64,
pub run_started_at: String,
pub jobs_url: String,
pub logs_url: String,
pub check_suite_url: String,
pub artifacts_url: String,
pub cancel_url: String,
pub rerun_url: String,
pub previous_attempt_url: Value,
pub workflow_url: String,
pub head_commit: HeadCommit,
pub repository: Repository,
pub head_repository: Repository,
}
Fields§
§id: i64
§name: String
§node_id: String
§head_branch: String
§head_sha: String
§run_number: i64
§event: String
§status: String
§conclusion: Value
§workflow_id: i64
§check_suite_id: i64
§check_suite_node_id: String
§url: String
§html_url: String
§pull_requests: Vec<Value>
§created_at: String
§updated_at: String
§run_attempt: i64
§run_started_at: String
§jobs_url: String
§logs_url: String
§check_suite_url: String
§artifacts_url: String
§cancel_url: String
§rerun_url: String
§previous_attempt_url: Value
§workflow_url: String
§head_commit: HeadCommit
§repository: Repository
§head_repository: Repository
Trait Implementations§
source§impl Clone for WorkflowRun
impl Clone for WorkflowRun
source§fn clone(&self) -> WorkflowRun
fn clone(&self) -> WorkflowRun
Returns a copy 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 WorkflowRun
impl Debug for WorkflowRun
source§impl<'de> Deserialize<'de> for WorkflowRun
impl<'de> Deserialize<'de> for WorkflowRun
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 RefUnwindSafe for WorkflowRun
impl Send for WorkflowRun
impl Sync for WorkflowRun
impl Unpin for WorkflowRun
impl UnwindSafe for WorkflowRun
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