pub struct DeploymentReviewApprovedWorkflowJobRun {
pub conclusion: Option<DeploymentReviewApprovedWorkflowJobRunConclusion>,
pub created_at: DateTime<Utc>,
pub environment: String,
pub html_url: String,
pub id: i64,
pub name: String,
pub status: DeploymentReviewApprovedWorkflowJobRunStatus,
pub updated_at: DateTime<Utc>,
}
Expand description
DeploymentReviewApprovedWorkflowJobRun
JSON schema
{
"type": "object",
"required": [
"conclusion",
"created_at",
"environment",
"html_url",
"id",
"name",
"status",
"updated_at"
],
"properties": {
"conclusion": {
"type": [
"string",
"null"
],
"enum": [
"success",
"failure",
"cancelled",
"skipped",
null
]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"environment": {
"type": "string"
},
"html_url": {
"type": "string",
"format": "uri"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"queued",
"in_progress",
"completed",
"waiting"
]
},
"updated_at": {
"type": "string",
"format": "date-time"
}
},
"additionalProperties": false
}
Fields§
§conclusion: Option<DeploymentReviewApprovedWorkflowJobRunConclusion>
§created_at: DateTime<Utc>
§environment: String
§html_url: String
§id: i64
§name: String
§status: DeploymentReviewApprovedWorkflowJobRunStatus
§updated_at: DateTime<Utc>
Implementations§
Trait Implementations§
Source§impl Clone for DeploymentReviewApprovedWorkflowJobRun
impl Clone for DeploymentReviewApprovedWorkflowJobRun
Source§fn clone(&self) -> DeploymentReviewApprovedWorkflowJobRun
fn clone(&self) -> DeploymentReviewApprovedWorkflowJobRun
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<'de> Deserialize<'de> for DeploymentReviewApprovedWorkflowJobRun
impl<'de> Deserialize<'de> for DeploymentReviewApprovedWorkflowJobRun
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 From<&DeploymentReviewApprovedWorkflowJobRun> for DeploymentReviewApprovedWorkflowJobRun
impl From<&DeploymentReviewApprovedWorkflowJobRun> for DeploymentReviewApprovedWorkflowJobRun
Source§fn from(value: &DeploymentReviewApprovedWorkflowJobRun) -> Self
fn from(value: &DeploymentReviewApprovedWorkflowJobRun) -> Self
Converts to this type from the input type.
Source§impl From<DeploymentReviewApprovedWorkflowJobRun> for DeploymentReviewApprovedWorkflowJobRun
impl From<DeploymentReviewApprovedWorkflowJobRun> for DeploymentReviewApprovedWorkflowJobRun
Source§fn from(value: DeploymentReviewApprovedWorkflowJobRun) -> Self
fn from(value: DeploymentReviewApprovedWorkflowJobRun) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeploymentReviewApprovedWorkflowJobRun
impl RefUnwindSafe for DeploymentReviewApprovedWorkflowJobRun
impl Send for DeploymentReviewApprovedWorkflowJobRun
impl Sync for DeploymentReviewApprovedWorkflowJobRun
impl Unpin for DeploymentReviewApprovedWorkflowJobRun
impl UnwindSafe for DeploymentReviewApprovedWorkflowJobRun
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