pub struct CallbackConfig {
pub enable_ai: bool,
pub enable_tool: bool,
pub enable_context: bool,
pub default_timeout_ms: u64,
pub max_concurrent: u32,
pub detailed_logging: bool,
}Expand description
Callback configuration
Fields§
§enable_ai: boolEnable AI callbacks
enable_tool: boolEnable tool callbacks
enable_context: boolEnable context callbacks
default_timeout_ms: u64Default timeout for all callbacks (ms)
max_concurrent: u32Maximum concurrent callbacks
detailed_logging: boolEnable detailed logging
Trait Implementations§
Source§impl Clone for CallbackConfig
impl Clone for CallbackConfig
Source§fn clone(&self) -> CallbackConfig
fn clone(&self) -> CallbackConfig
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 CallbackConfig
impl Debug for CallbackConfig
Auto Trait Implementations§
impl Freeze for CallbackConfig
impl RefUnwindSafe for CallbackConfig
impl Send for CallbackConfig
impl Sync for CallbackConfig
impl Unpin for CallbackConfig
impl UnsafeUnpin for CallbackConfig
impl UnwindSafe for CallbackConfig
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