pub struct StepDependency {
pub name: String,
pub step_type: String,
pub depends_on: Vec<String>,
pub all_refs: Vec<String>,
pub step_refs: Vec<String>,
pub is_root: bool,
}Expand description
Analysis result for a single step.
Fields§
§name: StringStep name.
step_type: StringStep type.
depends_on: Vec<String>Steps this step depends on (via variable references).
all_refs: Vec<String>All variable references found (including builtins).
step_refs: Vec<String>Variable references that are step-produced (non-builtin).
is_root: boolWhether this step has no step dependencies (can run first).
Trait Implementations§
Source§impl Clone for StepDependency
impl Clone for StepDependency
Source§fn clone(&self) -> StepDependency
fn clone(&self) -> StepDependency
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StepDependency
impl RefUnwindSafe for StepDependency
impl Send for StepDependency
impl Sync for StepDependency
impl Unpin for StepDependency
impl UnsafeUnpin for StepDependency
impl UnwindSafe for StepDependency
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.