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