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