pub struct UserCommandStep {
pub name: Option<String>,
pub container: Option<Container>,
pub run: String,
pub on: Option<Condition>,
pub continue_on_error: Option<bool>,
pub environments: Option<EnvironmentVariables>,
pub secrets: Option<Vec<String>>,
pub timeout: Option<String>,
}
Fields§
§name: Option<String>
§container: Option<Container>
§run: String
§on: Option<Condition>
§continue_on_error: Option<bool>
§environments: Option<EnvironmentVariables>
§secrets: Option<Vec<String>>
§timeout: Option<String>
Trait Implementations§
Source§impl Clone for UserCommandStep
impl Clone for UserCommandStep
Source§fn clone(&self) -> UserCommandStep
fn clone(&self) -> UserCommandStep
Returns a copy 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 UserCommandStep
impl Debug for UserCommandStep
Source§impl Default for UserCommandStep
impl Default for UserCommandStep
Source§fn default() -> UserCommandStep
fn default() -> UserCommandStep
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserCommandStep
impl<'de> Deserialize<'de> for UserCommandStep
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
Auto Trait Implementations§
impl Freeze for UserCommandStep
impl RefUnwindSafe for UserCommandStep
impl Send for UserCommandStep
impl Sync for UserCommandStep
impl Unpin for UserCommandStep
impl UnwindSafe for UserCommandStep
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