pub enum ThinkingBlockEvent {
Start(ThinkingBlockStart),
Delta(String),
Stop(ThinkingBlockStop),
}Expand description
思考ブロックのイベント
Variants§
Trait Implementations§
Source§impl Clone for ThinkingBlockEvent
impl Clone for ThinkingBlockEvent
Source§fn clone(&self) -> ThinkingBlockEvent
fn clone(&self) -> ThinkingBlockEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 ThinkingBlockEvent
impl Debug for ThinkingBlockEvent
Source§impl PartialEq for ThinkingBlockEvent
impl PartialEq for ThinkingBlockEvent
impl StructuralPartialEq for ThinkingBlockEvent
Auto Trait Implementations§
impl Freeze for ThinkingBlockEvent
impl RefUnwindSafe for ThinkingBlockEvent
impl Send for ThinkingBlockEvent
impl Sync for ThinkingBlockEvent
impl Unpin for ThinkingBlockEvent
impl UnwindSafe for ThinkingBlockEvent
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