#[non_exhaustive]pub enum ToolPromptPart {
ToolResult(ToolResultPart),
ToolApprovalResponse(ToolApprovalResponsePart),
}Expand description
Parts allowed in a tool message.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ToolResult(ToolResultPart)
Result of a client-executed tool call.
ToolApprovalResponse(ToolApprovalResponsePart)
Response to a tool approval request.
Trait Implementations§
Source§impl Clone for ToolPromptPart
impl Clone for ToolPromptPart
Source§fn clone(&self) -> ToolPromptPart
fn clone(&self) -> ToolPromptPart
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 ToolPromptPart
impl Debug for ToolPromptPart
Source§impl<'de> Deserialize<'de> for ToolPromptPart
impl<'de> Deserialize<'de> for ToolPromptPart
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
Source§impl PartialEq for ToolPromptPart
impl PartialEq for ToolPromptPart
Source§impl Serialize for ToolPromptPart
impl Serialize for ToolPromptPart
impl StructuralPartialEq for ToolPromptPart
Auto Trait Implementations§
impl Freeze for ToolPromptPart
impl RefUnwindSafe for ToolPromptPart
impl Send for ToolPromptPart
impl Sync for ToolPromptPart
impl Unpin for ToolPromptPart
impl UnsafeUnpin for ToolPromptPart
impl UnwindSafe for ToolPromptPart
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