pub enum ContentItem {
Text {
text: String,
},
Thinking {
text: String,
signature: Option<String>,
encrypted: Option<String>,
redacted_data: Option<String>,
},
ToolCall {
id: String,
name: String,
arguments: Value,
},
ToolResult {
tool_call_id: String,
content: Value,
is_error: bool,
},
Refusal {
text: String,
},
}Variants§
Text
Plain assistant/user text. Empty string is legal at the canonical layer but dialects (Gemini) may drop it.
Thinking
Chain-of-thought block, signed by Anthropic or plaintext elsewhere.
Fields
ToolCall
ToolResult
Refusal
Trait Implementations§
Source§impl Clone for ContentItem
impl Clone for ContentItem
Source§fn clone(&self) -> ContentItem
fn clone(&self) -> ContentItem
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 ContentItem
impl Debug for ContentItem
Source§impl<'de> Deserialize<'de> for ContentItem
impl<'de> Deserialize<'de> for ContentItem
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 ContentItem
impl PartialEq for ContentItem
Source§impl Serialize for ContentItem
impl Serialize for ContentItem
impl StructuralPartialEq for ContentItem
Auto Trait Implementations§
impl Freeze for ContentItem
impl RefUnwindSafe for ContentItem
impl Send for ContentItem
impl Sync for ContentItem
impl Unpin for ContentItem
impl UnsafeUnpin for ContentItem
impl UnwindSafe for ContentItem
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