pub struct AgentKernelProfile {
pub planning_cadence: String,
pub max_active_tasks: usize,
pub reflection_threshold: usize,
pub wake_policy: String,
pub human_approval_policy: String,
}Fields§
§planning_cadence: String§max_active_tasks: usize§reflection_threshold: usize§wake_policy: String§human_approval_policy: StringTrait Implementations§
Source§impl Clone for AgentKernelProfile
impl Clone for AgentKernelProfile
Source§fn clone(&self) -> AgentKernelProfile
fn clone(&self) -> AgentKernelProfile
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 AgentKernelProfile
impl Debug for AgentKernelProfile
Source§impl Default for AgentKernelProfile
impl Default for AgentKernelProfile
Source§impl PartialEq for AgentKernelProfile
impl PartialEq for AgentKernelProfile
Source§fn eq(&self, other: &AgentKernelProfile) -> bool
fn eq(&self, other: &AgentKernelProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AgentKernelProfile
impl StructuralPartialEq for AgentKernelProfile
Auto Trait Implementations§
impl Freeze for AgentKernelProfile
impl RefUnwindSafe for AgentKernelProfile
impl Send for AgentKernelProfile
impl Sync for AgentKernelProfile
impl Unpin for AgentKernelProfile
impl UnsafeUnpin for AgentKernelProfile
impl UnwindSafe for AgentKernelProfile
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