pub struct DeploymentReviewRejectedWorkflowJobRun {
pub conclusion: Option<DeploymentReviewRejectedWorkflowJobRunConclusion>,
pub created_at: DateTime<Utc>,
pub environment: String,
pub html_url: String,
pub id: i64,
pub name: String,
pub status: DeploymentReviewRejectedWorkflowJobRunStatus,
pub updated_at: DateTime<Utc>,
}
Expand description
DeploymentReviewRejectedWorkflowJobRun
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<DeploymentReviewRejectedWorkflowJobRunConclusion>
§created_at: DateTime<Utc>
§environment: String
§html_url: String
§id: i64
§name: String
§status: DeploymentReviewRejectedWorkflowJobRunStatus
§updated_at: DateTime<Utc>
Implementations§
Trait Implementations§
Source§impl Clone for DeploymentReviewRejectedWorkflowJobRun
impl Clone for DeploymentReviewRejectedWorkflowJobRun
Source§fn clone(&self) -> DeploymentReviewRejectedWorkflowJobRun
fn clone(&self) -> DeploymentReviewRejectedWorkflowJobRun
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 DeploymentReviewRejectedWorkflowJobRun
impl<'de> Deserialize<'de> for DeploymentReviewRejectedWorkflowJobRun
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<&DeploymentReviewRejectedWorkflowJobRun> for DeploymentReviewRejectedWorkflowJobRun
impl From<&DeploymentReviewRejectedWorkflowJobRun> for DeploymentReviewRejectedWorkflowJobRun
Source§fn from(value: &DeploymentReviewRejectedWorkflowJobRun) -> Self
fn from(value: &DeploymentReviewRejectedWorkflowJobRun) -> Self
Converts to this type from the input type.
Source§impl From<DeploymentReviewRejectedWorkflowJobRun> for DeploymentReviewRejectedWorkflowJobRun
impl From<DeploymentReviewRejectedWorkflowJobRun> for DeploymentReviewRejectedWorkflowJobRun
Source§fn from(value: DeploymentReviewRejectedWorkflowJobRun) -> Self
fn from(value: DeploymentReviewRejectedWorkflowJobRun) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeploymentReviewRejectedWorkflowJobRun
impl RefUnwindSafe for DeploymentReviewRejectedWorkflowJobRun
impl Send for DeploymentReviewRejectedWorkflowJobRun
impl Sync for DeploymentReviewRejectedWorkflowJobRun
impl Unpin for DeploymentReviewRejectedWorkflowJobRun
impl UnwindSafe for DeploymentReviewRejectedWorkflowJobRun
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