pub struct WebhookDeploymentStatusCreatedCheckRun {
pub completed_at: Option<String>,
pub conclusion: Option<Conclusion>,
pub details_url: String,
pub external_id: String,
pub head_sha: String,
pub html_url: String,
pub id: i32,
pub name: String,
pub node_id: String,
pub started_at: String,
pub status: Status,
pub url: String,
}
Fields§
§completed_at: Option<String>
§conclusion: Option<Conclusion>
The result of the completed check run. This value will be null
until the check run has completed.
details_url: String
§external_id: String
§head_sha: String
The SHA of the commit that is being checked.
html_url: String
§id: i32
The id of the check.
name: String
The name of the check run.
node_id: String
§started_at: String
§status: Status
The current status of the check run. Can be queued
, in_progress
, or completed
.
url: String
Implementations§
Trait Implementations§
Source§impl Clone for WebhookDeploymentStatusCreatedCheckRun
impl Clone for WebhookDeploymentStatusCreatedCheckRun
Source§fn clone(&self) -> WebhookDeploymentStatusCreatedCheckRun
fn clone(&self) -> WebhookDeploymentStatusCreatedCheckRun
Returns a duplicate 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 Default for WebhookDeploymentStatusCreatedCheckRun
impl Default for WebhookDeploymentStatusCreatedCheckRun
Source§fn default() -> WebhookDeploymentStatusCreatedCheckRun
fn default() -> WebhookDeploymentStatusCreatedCheckRun
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookDeploymentStatusCreatedCheckRun
impl<'de> Deserialize<'de> for WebhookDeploymentStatusCreatedCheckRun
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
Source§impl PartialEq for WebhookDeploymentStatusCreatedCheckRun
impl PartialEq for WebhookDeploymentStatusCreatedCheckRun
Source§fn eq(&self, other: &WebhookDeploymentStatusCreatedCheckRun) -> bool
fn eq(&self, other: &WebhookDeploymentStatusCreatedCheckRun) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebhookDeploymentStatusCreatedCheckRun
Auto Trait Implementations§
impl Freeze for WebhookDeploymentStatusCreatedCheckRun
impl RefUnwindSafe for WebhookDeploymentStatusCreatedCheckRun
impl Send for WebhookDeploymentStatusCreatedCheckRun
impl Sync for WebhookDeploymentStatusCreatedCheckRun
impl Unpin for WebhookDeploymentStatusCreatedCheckRun
impl UnwindSafe for WebhookDeploymentStatusCreatedCheckRun
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