pub struct ActionWorkflowStep {
pub completed_at: Option<String>,
pub conclusion: Option<String>,
pub name: Option<String>,
pub number: Option<i64>,
pub started_at: Option<String>,
pub status: Option<String>,
}Expand description
ActionWorkflowStep : ActionWorkflowStep represents a step of a WorkflowJob
Fields§
§completed_at: Option<String>§conclusion: Option<String>§name: Option<String>§number: Option<i64>§started_at: Option<String>§status: Option<String>Implementations§
Source§impl ActionWorkflowStep
impl ActionWorkflowStep
Sourcepub fn new() -> ActionWorkflowStep
pub fn new() -> ActionWorkflowStep
ActionWorkflowStep represents a step of a WorkflowJob
Trait Implementations§
Source§impl Clone for ActionWorkflowStep
impl Clone for ActionWorkflowStep
Source§fn clone(&self) -> ActionWorkflowStep
fn clone(&self) -> ActionWorkflowStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionWorkflowStep
impl Debug for ActionWorkflowStep
Source§impl Default for ActionWorkflowStep
impl Default for ActionWorkflowStep
Source§fn default() -> ActionWorkflowStep
fn default() -> ActionWorkflowStep
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionWorkflowStep
impl<'de> Deserialize<'de> for ActionWorkflowStep
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 PartialEq for ActionWorkflowStep
impl PartialEq for ActionWorkflowStep
Source§fn eq(&self, other: &ActionWorkflowStep) -> bool
fn eq(&self, other: &ActionWorkflowStep) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActionWorkflowStep
impl Serialize for ActionWorkflowStep
impl StructuralPartialEq for ActionWorkflowStep
Auto Trait Implementations§
impl Freeze for ActionWorkflowStep
impl RefUnwindSafe for ActionWorkflowStep
impl Send for ActionWorkflowStep
impl Sync for ActionWorkflowStep
impl Unpin for ActionWorkflowStep
impl UnsafeUnpin for ActionWorkflowStep
impl UnwindSafe for ActionWorkflowStep
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