pub struct YamlWorkflowExecutionFlags {
pub healing: bool,
pub workflow_streaming: bool,
pub node_llm_streaming: bool,
pub split_stream_deltas: 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. 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.
Trait Implementations§
Source§impl Clone for YamlWorkflowExecutionFlags
impl Clone for YamlWorkflowExecutionFlags
Source§fn clone(&self) -> YamlWorkflowExecutionFlags
fn clone(&self) -> YamlWorkflowExecutionFlags
Returns a duplicate of the value. Read more
1.0.0 · 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 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>,
Deserialize this value from the given Serde deserializer. Read more
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
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<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
Compare self to
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
Compare self to
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>
Wrap the input message
T in a tonic::Request