pub struct Step {
pub name: String,
pub description: Option<String>,
pub script: StepScript,
pub step_environments: Option<Vec<Environment>>,
pub parameter_space: Option<StepParameterSpace>,
pub host_requirements: Option<HostRequirements>,
pub dependencies: Option<Vec<StepDependency>>,
pub resolved_symtab: Option<SerializedSymbolTable>,
}Expand description
A fully instantiated step.
Fields§
§name: String§description: Option<String>§script: StepScript§step_environments: Option<Vec<Environment>>§parameter_space: Option<StepParameterSpace>§host_requirements: Option<HostRequirements>§dependencies: Option<Vec<StepDependency>>§resolved_symtab: Option<SerializedSymbolTable>Complete symbol table at step scope in JSON transport format. Contains Param., RawParam., Job.Name, Step.Name, and step-level let bindings. The session deserializes this with PathFormat::host() and layers Session.* and Task.* values on top at runtime.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Step
impl<'de> Deserialize<'de> for Step
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 Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe for Step
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more