pub struct StepCreateInput {Show 13 fields
pub depends_on: Option<Value>,
pub detached: bool,
pub errignore: bool,
pub error: String,
pub exit_code: i64,
pub image: String,
pub name: String,
pub number: i64,
pub parent_group_id: i64,
pub status: CiStatus,
pub stepid: Option<Option<String>>,
pub yaml_provider: WorkflowProvider,
pub yaml_resolved: String,
}Fields§
§depends_on: Option<Value>§detached: bool§errignore: bool§error: String§exit_code: i64§image: String§name: String§number: i64§parent_group_id: i64§status: CiStatus§stepid: Option<Option<String>>The step id configured in the yaml file. When none, the step maybe a pre step, or post step.
yaml_provider: WorkflowProvider§yaml_resolved: StringImplementations§
Trait Implementations§
Source§impl Clone for StepCreateInput
impl Clone for StepCreateInput
Source§fn clone(&self) -> StepCreateInput
fn clone(&self) -> StepCreateInput
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 StepCreateInput
impl Debug for StepCreateInput
Source§impl Default for StepCreateInput
impl Default for StepCreateInput
Source§fn default() -> StepCreateInput
fn default() -> StepCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StepCreateInput
impl<'de> Deserialize<'de> for StepCreateInput
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 StepCreateInput
impl PartialEq for StepCreateInput
Source§impl Serialize for StepCreateInput
impl Serialize for StepCreateInput
impl StructuralPartialEq for StepCreateInput
Auto Trait Implementations§
impl Freeze for StepCreateInput
impl RefUnwindSafe for StepCreateInput
impl Send for StepCreateInput
impl Sync for StepCreateInput
impl Unpin for StepCreateInput
impl UnwindSafe for StepCreateInput
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