pub struct DynamicManagerUpdate {
pub manager_agent_id: Option<LettaId>,
pub termination_token: Option<String>,
pub max_turns: Option<i32>,
}Expand description
Dynamic manager update.
Fields§
§manager_agent_id: Option<LettaId>The agent ID that manages dynamic routing.
termination_token: Option<String>Token that signals conversation termination.
max_turns: Option<i32>Maximum turns per conversation.
Trait Implementations§
Source§impl Clone for DynamicManagerUpdate
impl Clone for DynamicManagerUpdate
Source§fn clone(&self) -> DynamicManagerUpdate
fn clone(&self) -> DynamicManagerUpdate
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 DynamicManagerUpdate
impl Debug for DynamicManagerUpdate
Source§impl Default for DynamicManagerUpdate
impl Default for DynamicManagerUpdate
Source§fn default() -> DynamicManagerUpdate
fn default() -> DynamicManagerUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DynamicManagerUpdate
impl<'de> Deserialize<'de> for DynamicManagerUpdate
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 DynamicManagerUpdate
impl RefUnwindSafe for DynamicManagerUpdate
impl Send for DynamicManagerUpdate
impl Sync for DynamicManagerUpdate
impl Unpin for DynamicManagerUpdate
impl UnsafeUnpin for DynamicManagerUpdate
impl UnwindSafe for DynamicManagerUpdate
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