pub struct FlowInspection {
pub name: String,
pub source_file: String,
pub source_hash: String,
pub source_lines: usize,
pub signature: FlowSignature,
pub steps: Vec<StepInfo>,
pub edges: Vec<EdgeInfo>,
pub execution_levels: Vec<Vec<String>>,
pub anchors: Vec<AnchorInfo>,
pub tools: Vec<ToolInfo>,
pub personas_referenced: Vec<String>,
pub compilation: CompilationInfo,
}Expand description
Complete inspection report for a deployed flow.
Fields§
§name: StringFlow name.
source_file: StringSource file name.
source_hash: StringSource hash (from version registry).
source_lines: usizeNumber of lines in the source.
signature: FlowSignatureFlow signature details.
steps: Vec<StepInfo>Steps in the flow.
edges: Vec<EdgeInfo>Data edges between steps.
execution_levels: Vec<Vec<String>>Execution levels (parallelism structure).
anchors: Vec<AnchorInfo>Anchors defined in the source.
tools: Vec<ToolInfo>Tools declared in the source.
personas_referenced: Vec<String>Unique personas referenced across all steps.
compilation: CompilationInfoCompilation metadata.
Trait Implementations§
Source§impl Clone for FlowInspection
impl Clone for FlowInspection
Source§fn clone(&self) -> FlowInspection
fn clone(&self) -> FlowInspection
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 moreSource§impl Debug for FlowInspection
impl Debug for FlowInspection
Auto Trait Implementations§
impl Freeze for FlowInspection
impl RefUnwindSafe for FlowInspection
impl Send for FlowInspection
impl Sync for FlowInspection
impl Unpin for FlowInspection
impl UnsafeUnpin for FlowInspection
impl UnwindSafe for FlowInspection
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.