pub struct CheckRunCompletedEventCheckRunCheckSuite<'a> {Show 14 fields
pub id: usize,
pub node_id: Option<&'a str>,
pub head_branch: Option<&'a str>,
pub head_sha: &'a str,
pub status: CheckRunCompletedEventCheckRunCheckSuiteStatus,
pub conclusion: Option<CheckRunCompletedEventCheckRunCheckSuiteConclusion>,
pub url: &'a str,
pub before: Option<&'a str>,
pub after: Option<&'a str>,
pub pull_requests: Vec<CheckRunPullRequest<'a>>,
pub deployment: Option<CheckRunDeployment<'a>>,
pub app: App<'a>,
pub created_at: &'a str,
pub updated_at: &'a str,
}
Fields§
§id: usize
The id of the check suite that this check run is part of.
node_id: Option<&'a str>
§head_branch: Option<&'a str>
§head_sha: &'a str
The SHA of the head commit that is being checked.
status: CheckRunCompletedEventCheckRunCheckSuiteStatus
§conclusion: Option<CheckRunCompletedEventCheckRunCheckSuiteConclusion>
§url: &'a str
§before: Option<&'a str>
§after: Option<&'a str>
§pull_requests: Vec<CheckRunPullRequest<'a>>
An array of pull requests that match this check suite. A pull request matches a check suite if they have the same head_branch
. * Note: * The head_sha
of the check suite can differ from the sha
of the pull request if subsequent pushes are made into the PR. When the check suite’s head_branch
is in a forked repository it will be null
and the pull_requests
array will be empty.
deployment: Option<CheckRunDeployment<'a>>
§app: App<'a>
§created_at: &'a str
§updated_at: &'a str
Trait Implementations§
source§impl<'a> Debug for CheckRunCompletedEventCheckRunCheckSuite<'a>
impl<'a> Debug for CheckRunCompletedEventCheckRunCheckSuite<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for CheckRunCompletedEventCheckRunCheckSuite<'a>
impl<'de: 'a, 'a> Deserialize<'de> for CheckRunCompletedEventCheckRunCheckSuite<'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 CheckRunCompletedEventCheckRunCheckSuite<'a>
impl<'a> Send for CheckRunCompletedEventCheckRunCheckSuite<'a>
impl<'a> Sync for CheckRunCompletedEventCheckRunCheckSuite<'a>
impl<'a> Unpin for CheckRunCompletedEventCheckRunCheckSuite<'a>
impl<'a> UnwindSafe for CheckRunCompletedEventCheckRunCheckSuite<'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