pub enum ContentBlockKind {
Text,
Thinking {
signature: Option<String>,
},
ToolUse {
id: String,
name: String,
signature: Option<String>,
},
}Variants§
Trait Implementations§
Source§impl Clone for ContentBlockKind
impl Clone for ContentBlockKind
Source§fn clone(&self) -> ContentBlockKind
fn clone(&self) -> ContentBlockKind
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 moreAuto Trait Implementations§
impl Freeze for ContentBlockKind
impl RefUnwindSafe for ContentBlockKind
impl Send for ContentBlockKind
impl Sync for ContentBlockKind
impl Unpin for ContentBlockKind
impl UnsafeUnpin for ContentBlockKind
impl UnwindSafe for ContentBlockKind
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