pub enum TurnState {
Finished,
Unfinished,
Wait,
}Expand description
The predicted turn state.
Variants§
Finished
User is done speaking — AI should respond.
Unfinished
User is still speaking or thinking.
Wait
User explicitly asked the AI to wait.
Trait Implementations§
impl Copy for TurnState
impl Eq for TurnState
impl StructuralPartialEq for TurnState
Auto Trait Implementations§
impl Freeze for TurnState
impl RefUnwindSafe for TurnState
impl Send for TurnState
impl Sync for TurnState
impl Unpin for TurnState
impl UnsafeUnpin for TurnState
impl UnwindSafe for TurnState
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