enum AccState {
AwaitingOpen,
InsideThinking,
ContentPhase,
}Expand description
Internal state of the accumulator FSM.
Variants§
AwaitingOpen
Haven’t seen the opening <think…> yet (may be buffering a partial tag).
InsideThinking
Inside the thinking block, forwarding as ThinkingDelta.
ContentPhase
Past the closing </think>, forwarding as ContentDelta.
Trait Implementations§
impl Copy for AccState
impl Eq for AccState
impl StructuralPartialEq for AccState
Auto Trait Implementations§
impl Freeze for AccState
impl RefUnwindSafe for AccState
impl Send for AccState
impl Sync for AccState
impl Unpin for AccState
impl UnwindSafe for AccState
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