pub struct PlanningConfig {
pub planner_llm: Option<String>,
pub max_steps: u32,
pub available: PlanAvailableActions,
pub reflection: PlanReflectionConfig,
}Fields§
§planner_llm: Option<String>§max_steps: u32§available: PlanAvailableActions§reflection: PlanReflectionConfigTrait Implementations§
Source§impl Clone for PlanningConfig
impl Clone for PlanningConfig
Source§fn clone(&self) -> PlanningConfig
fn clone(&self) -> PlanningConfig
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 PlanningConfig
impl Debug for PlanningConfig
Source§impl Default for PlanningConfig
impl Default for PlanningConfig
Source§impl<'de> Deserialize<'de> for PlanningConfig
impl<'de> Deserialize<'de> for PlanningConfig
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 PlanningConfig
impl RefUnwindSafe for PlanningConfig
impl Send for PlanningConfig
impl Sync for PlanningConfig
impl Unpin for PlanningConfig
impl UnsafeUnpin for PlanningConfig
impl UnwindSafe for PlanningConfig
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