pub struct RunStep {
pub run: String,
pub working_directory: Option<String>,
pub shell: Option<LoE<String>>,
pub shared: SharedStepFields,
}Fields§
§run: StringThe command to run.
working_directory: Option<String>An optional working directory to run RunStep::run from.
shell: Option<LoE<String>>An optional shell to run in. Defaults to the job or workflow’s default shell.
Shared fields for this step.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunStep
impl<'de> Deserialize<'de> for RunStep
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 RunStep
impl RefUnwindSafe for RunStep
impl Send for RunStep
impl Sync for RunStep
impl Unpin for RunStep
impl UnsafeUnpin for RunStep
impl UnwindSafe for RunStep
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