pub enum DeploymentReviewRejectedWorkflowJobRunsItemStatus {
Queued,
InProgress,
Completed,
Waiting,
}
Expand description
DeploymentReviewRejectedWorkflowJobRunsItemStatus
JSON schema
{
"type": "string",
"enum": [
"queued",
"in_progress",
"completed",
"waiting"
]
}
Variants§
Trait Implementations§
Source§impl Clone for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl Clone for DeploymentReviewRejectedWorkflowJobRunsItemStatus
Source§fn clone(&self) -> DeploymentReviewRejectedWorkflowJobRunsItemStatus
fn clone(&self) -> DeploymentReviewRejectedWorkflowJobRunsItemStatus
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 DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl<'de> Deserialize<'de> for DeploymentReviewRejectedWorkflowJobRunsItemStatus
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<&DeploymentReviewRejectedWorkflowJobRunsItemStatus> for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl From<&DeploymentReviewRejectedWorkflowJobRunsItemStatus> for DeploymentReviewRejectedWorkflowJobRunsItemStatus
Source§fn from(value: &DeploymentReviewRejectedWorkflowJobRunsItemStatus) -> Self
fn from(value: &DeploymentReviewRejectedWorkflowJobRunsItemStatus) -> Self
Converts to this type from the input type.
Source§impl Ord for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl Ord for DeploymentReviewRejectedWorkflowJobRunsItemStatus
Source§fn cmp(
&self,
other: &DeploymentReviewRejectedWorkflowJobRunsItemStatus,
) -> Ordering
fn cmp( &self, other: &DeploymentReviewRejectedWorkflowJobRunsItemStatus, ) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl PartialEq for DeploymentReviewRejectedWorkflowJobRunsItemStatus
Source§fn eq(&self, other: &DeploymentReviewRejectedWorkflowJobRunsItemStatus) -> bool
fn eq(&self, other: &DeploymentReviewRejectedWorkflowJobRunsItemStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl PartialOrd for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl Copy for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl Eq for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl StructuralPartialEq for DeploymentReviewRejectedWorkflowJobRunsItemStatus
Auto Trait Implementations§
impl Freeze for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl RefUnwindSafe for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl Send for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl Sync for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl Unpin for DeploymentReviewRejectedWorkflowJobRunsItemStatus
impl UnwindSafe for DeploymentReviewRejectedWorkflowJobRunsItemStatus
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