pub struct WorkflowStepQueued {
pub completed_at: (),
pub conclusion: (),
pub name: String,
pub number: i64,
pub started_at: (),
pub status: WorkflowStepQueuedStatus,
}
Expand description
WorkflowStepQueued
JSON schema
{
"title": "Workflow Step (Queued)",
"type": "object",
"required": [
"completed_at",
"conclusion",
"name",
"number",
"started_at",
"status"
],
"properties": {
"completed_at": {
"type": "null"
},
"conclusion": {
"type": "null"
},
"name": {
"type": "string"
},
"number": {
"type": "integer"
},
"started_at": {
"type": "null"
},
"status": {
"type": "string",
"enum": [
"queued"
]
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema"
}
Fields§
§completed_at: ()
§conclusion: ()
§name: String
§number: i64
§started_at: ()
§status: WorkflowStepQueuedStatus
Implementations§
Source§impl WorkflowStepQueued
impl WorkflowStepQueued
pub fn builder() -> WorkflowStepQueued
Trait Implementations§
Source§impl Clone for WorkflowStepQueued
impl Clone for WorkflowStepQueued
Source§fn clone(&self) -> WorkflowStepQueued
fn clone(&self) -> WorkflowStepQueued
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 Debug for WorkflowStepQueued
impl Debug for WorkflowStepQueued
Source§impl<'de> Deserialize<'de> for WorkflowStepQueued
impl<'de> Deserialize<'de> for WorkflowStepQueued
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<&WorkflowStepQueued> for WorkflowStepQueued
impl From<&WorkflowStepQueued> for WorkflowStepQueued
Source§fn from(value: &WorkflowStepQueued) -> Self
fn from(value: &WorkflowStepQueued) -> Self
Converts to this type from the input type.
Source§impl From<WorkflowStepQueued> for WorkflowStep
impl From<WorkflowStepQueued> for WorkflowStep
Source§fn from(value: WorkflowStepQueued) -> Self
fn from(value: WorkflowStepQueued) -> Self
Converts to this type from the input type.
Source§impl From<WorkflowStepQueued> for WorkflowStepQueued
impl From<WorkflowStepQueued> for WorkflowStepQueued
Source§fn from(value: WorkflowStepQueued) -> Self
fn from(value: WorkflowStepQueued) -> Self
Converts to this type from the input type.
Source§impl Serialize for WorkflowStepQueued
impl Serialize for WorkflowStepQueued
Auto Trait Implementations§
impl Freeze for WorkflowStepQueued
impl RefUnwindSafe for WorkflowStepQueued
impl Send for WorkflowStepQueued
impl Sync for WorkflowStepQueued
impl Unpin for WorkflowStepQueued
impl UnwindSafe for WorkflowStepQueued
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