pub struct DeploymentStatusCreatedEventCheckRun<'a> {
pub id: usize,
pub name: &'a str,
pub node_id: &'a str,
pub head_sha: &'a str,
pub external_id: &'a str,
pub url: &'a str,
pub html_url: &'a str,
pub details_url: &'a str,
pub status: DeploymentStatusCreatedEventCheckRunStatus,
pub conclusion: Option<DeploymentStatusCreatedEventCheckRunConclusion>,
pub started_at: &'a str,
pub completed_at: Option<&'a str>,
}
Fields§
§id: usize
The id of the check.
name: &'a str
The name of the check run.
node_id: &'a str
§head_sha: &'a str
The SHA of the commit that is being checked.
external_id: &'a str
§url: &'a str
§html_url: &'a str
§details_url: &'a str
§status: DeploymentStatusCreatedEventCheckRunStatus
The current status of the check run. Can be queued
, in_progress
, or completed
.
conclusion: Option<DeploymentStatusCreatedEventCheckRunConclusion>
The result of the completed check run. Can be one of success
, failure
, neutral
, cancelled
, timed_out
, action_required
or stale
. This value will be null
until the check run has completed.
started_at: &'a str
§completed_at: Option<&'a str>
Trait Implementations§
source§impl<'a> Debug for DeploymentStatusCreatedEventCheckRun<'a>
impl<'a> Debug for DeploymentStatusCreatedEventCheckRun<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for DeploymentStatusCreatedEventCheckRun<'a>
impl<'de: 'a, 'a> Deserialize<'de> for DeploymentStatusCreatedEventCheckRun<'a>
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<'a> RefUnwindSafe for DeploymentStatusCreatedEventCheckRun<'a>
impl<'a> Send for DeploymentStatusCreatedEventCheckRun<'a>
impl<'a> Sync for DeploymentStatusCreatedEventCheckRun<'a>
impl<'a> Unpin for DeploymentStatusCreatedEventCheckRun<'a>
impl<'a> UnwindSafe for DeploymentStatusCreatedEventCheckRun<'a>
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