pub struct CheckRunCompletedEventCheckRun<'a> {
Show 16 fields pub id: usize, pub node_id: Option<&'a str>, pub head_sha: &'a str, pub external_id: &'a str, pub url: &'a str, pub html_url: &'a str, pub details_url: Option<&'a str>, pub conclusion: Option<CheckRunCompletedEventCheckRunConclusion>, pub started_at: &'a str, pub completed_at: &'a str, pub output: CheckRunCompletedEventCheckRunOutput<'a>, pub name: &'a str, pub check_suite: CheckRunCompletedEventCheckRunCheckSuite<'a>, pub app: App<'a>, pub pull_requests: Vec<CheckRunPullRequest<'a>>, pub deployment: Option<CheckRunDeployment<'a>>,
}

Fields§

§id: usize

The id of the check.

§node_id: Option<&'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: Option<&'a str>§conclusion: Option<CheckRunCompletedEventCheckRunConclusion>

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

The time that the check run began. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

§completed_at: &'a str

The time the check completed. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

§output: CheckRunCompletedEventCheckRunOutput<'a>§name: &'a str

The name of the check run.

§check_suite: CheckRunCompletedEventCheckRunCheckSuite<'a>§app: App<'a>§pull_requests: Vec<CheckRunPullRequest<'a>>§deployment: Option<CheckRunDeployment<'a>>

Trait Implementations§

source§

impl<'a> Debug for CheckRunCompletedEventCheckRun<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de: 'a, 'a> Deserialize<'de> for CheckRunCompletedEventCheckRun<'a>

source§

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§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,