pub enum BlockDelta {
Text {
text: String,
},
Thinking {
thinking: String,
},
InputJson {
partial_json: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for BlockDelta
impl Clone for BlockDelta
Source§fn clone(&self) -> BlockDelta
fn clone(&self) -> BlockDelta
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 BlockDelta
impl Debug for BlockDelta
Auto Trait Implementations§
impl Freeze for BlockDelta
impl RefUnwindSafe for BlockDelta
impl Send for BlockDelta
impl Sync for BlockDelta
impl Unpin for BlockDelta
impl UnsafeUnpin for BlockDelta
impl UnwindSafe for BlockDelta
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