pub enum ToolCallStateAction {
Set(ToolCallState),
}Expand description
Action type for ToolCallState reducer.
Variants§
Set(ToolCallState)
Set the full tool call state (used by recovery and normal updates).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ToolCallStateAction
impl<'de> Deserialize<'de> for ToolCallStateAction
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ToolCallStateAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ToolCallStateAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ToolCallStateAction
impl Serialize for ToolCallStateAction
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ToolCallStateAction
impl RefUnwindSafe for ToolCallStateAction
impl Send for ToolCallStateAction
impl Sync for ToolCallStateAction
impl Unpin for ToolCallStateAction
impl UnsafeUnpin for ToolCallStateAction
impl UnwindSafe for ToolCallStateAction
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