pub struct CommandStep {
pub name: String,
pub command: String,
pub commands: Vec<String>,
pub cancel_on_build_failing: Option<bool>,
pub soft_fail: Option<bool>,
pub agents: Option<HashMap<String, String>>,
pub timeout_in_minutes: Option<i64>,
pub retry: Option<HashMap<String, String>>,
pub env: Option<HashMap<String, String>>,
}Fields§
§name: String§command: String§commands: Vec<String>§cancel_on_build_failing: Option<bool>§soft_fail: Option<bool>§agents: Option<HashMap<String, String>>§timeout_in_minutes: Option<i64>§retry: Option<HashMap<String, String>>§env: Option<HashMap<String, String>>Trait Implementations§
Source§impl Debug for CommandStep
impl Debug for CommandStep
Source§impl Default for CommandStep
impl Default for CommandStep
Source§fn default() -> CommandStep
fn default() -> CommandStep
Returns the “default value” for a type. Read more
Source§impl PartialEq for CommandStep
impl PartialEq for CommandStep
Source§impl Serialize for CommandStep
impl Serialize for CommandStep
impl StructuralPartialEq for CommandStep
Auto Trait Implementations§
impl Freeze for CommandStep
impl RefUnwindSafe for CommandStep
impl Send for CommandStep
impl Sync for CommandStep
impl Unpin for CommandStep
impl UnsafeUnpin for CommandStep
impl UnwindSafe for CommandStep
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