pub struct WorkflowServerConfig {
pub tool_prefix: String,
pub include_descriptions: bool,
pub execution_timeout_secs: u64,
}Expand description
Configuration for workflow server
Fields§
§tool_prefix: StringPrefix for tool names (e.g., “oxify_” -> “oxify_my_workflow”)
include_descriptions: boolWhether to include workflow description in tool schema
execution_timeout_secs: u64Maximum execution timeout in seconds
Trait Implementations§
Source§impl Clone for WorkflowServerConfig
impl Clone for WorkflowServerConfig
Source§fn clone(&self) -> WorkflowServerConfig
fn clone(&self) -> WorkflowServerConfig
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 WorkflowServerConfig
impl Debug for WorkflowServerConfig
Auto Trait Implementations§
impl Freeze for WorkflowServerConfig
impl RefUnwindSafe for WorkflowServerConfig
impl Send for WorkflowServerConfig
impl Sync for WorkflowServerConfig
impl Unpin for WorkflowServerConfig
impl UnwindSafe for WorkflowServerConfig
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