pub struct YamlWorkflowExecutionFlags {
pub healing: bool,
pub workflow_streaming: bool,
pub node_llm_streaming: bool,
pub split_stream_deltas: bool,
pub debug_stream_parse: bool,
}Expand description
Global execution toggles for a workflow run (orthogonal to per-node YAML heal / stream).
JSON uses snake_case keys: healing, workflow_streaming, node_llm_streaming,
split_stream_deltas, debug_stream_parse. Missing keys deserialize using Default (see
Default::default on this type).
Fields§
§healing: boolWhen true, enables the JSON healing path for structured LLM outputs in addition to any
per-node heal setting in YAML.
workflow_streaming: boolWhen false and an event sink is present, token delta events are not forwarded to the sink (workflow lifecycle and completion events still flow).
node_llm_streaming: boolWhen false, LLM nodes never use provider streaming, regardless of YAML stream.
split_stream_deltas: boolWhen true, emit separate stream events for thinking vs output (node_stream_thinking_delta,
node_stream_output_delta) in addition to node_stream_delta.
debug_stream_parse: boolWhen true (or when env SIMPLE_AGENTS_DEBUG_STREAM_PARSE is 1/true/yes), append the
partial streamed LLM text to structured JSON parse/coerce errors for debugging.
Trait Implementations§
Source§impl Clone for YamlWorkflowExecutionFlags
impl Clone for YamlWorkflowExecutionFlags
Source§fn clone(&self) -> YamlWorkflowExecutionFlags
fn clone(&self) -> YamlWorkflowExecutionFlags
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for YamlWorkflowExecutionFlags
impl Debug for YamlWorkflowExecutionFlags
Source§impl Default for YamlWorkflowExecutionFlags
impl Default for YamlWorkflowExecutionFlags
Source§impl<'de> Deserialize<'de> for YamlWorkflowExecutionFlagswhere
YamlWorkflowExecutionFlags: Default,
impl<'de> Deserialize<'de> for YamlWorkflowExecutionFlagswhere
YamlWorkflowExecutionFlags: Default,
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>,
Source§impl PartialEq for YamlWorkflowExecutionFlags
impl PartialEq for YamlWorkflowExecutionFlags
Source§fn eq(&self, other: &YamlWorkflowExecutionFlags) -> bool
fn eq(&self, other: &YamlWorkflowExecutionFlags) -> bool
self and other values to be equal, and is used by ==.impl Copy for YamlWorkflowExecutionFlags
impl Eq for YamlWorkflowExecutionFlags
impl StructuralPartialEq for YamlWorkflowExecutionFlags
Auto Trait Implementations§
impl Freeze for YamlWorkflowExecutionFlags
impl RefUnwindSafe for YamlWorkflowExecutionFlags
impl Send for YamlWorkflowExecutionFlags
impl Sync for YamlWorkflowExecutionFlags
impl Unpin for YamlWorkflowExecutionFlags
impl UnsafeUnpin for YamlWorkflowExecutionFlags
impl UnwindSafe for YamlWorkflowExecutionFlags
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request