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