pub enum ContentStart {
Text {
index: usize,
},
Image {
index: usize,
},
Thinking {
index: usize,
signature: Option<String>,
redacted: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for ContentStart
impl Clone for ContentStart
Source§fn clone(&self) -> ContentStart
fn clone(&self) -> ContentStart
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 ContentStart
impl RefUnwindSafe for ContentStart
impl Send for ContentStart
impl Sync for ContentStart
impl Unpin for ContentStart
impl UnsafeUnpin for ContentStart
impl UnwindSafe for ContentStart
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