pub struct ExecutionFlags {
pub workflow_streaming: bool,
pub node_llm_streaming: bool,
}Expand description
Flags that control execution behaviour for a single run.
Fields§
§workflow_streaming: boolWhether the workflow-level orchestrator streams between nodes.
node_llm_streaming: boolWhether individual LLM calls within a node use streaming.
Trait Implementations§
Source§impl Clone for ExecutionFlags
impl Clone for ExecutionFlags
Source§fn clone(&self) -> ExecutionFlags
fn clone(&self) -> ExecutionFlags
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 ExecutionFlags
impl Debug for ExecutionFlags
Source§impl Default for ExecutionFlags
impl Default for ExecutionFlags
Source§impl<'de> Deserialize<'de> for ExecutionFlags
impl<'de> Deserialize<'de> for ExecutionFlags
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 ExecutionFlags
impl RefUnwindSafe for ExecutionFlags
impl Send for ExecutionFlags
impl Sync for ExecutionFlags
impl Unpin for ExecutionFlags
impl UnsafeUnpin for ExecutionFlags
impl UnwindSafe for ExecutionFlags
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