pub enum UserCommand {
Text {
content: Vec<ContentBlock>,
},
Cancel,
ClearContext,
}Expand description
User-initiated actions that the agent processes as part of normal interaction.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UserCommand
impl RefUnwindSafe for UserCommand
impl Send for UserCommand
impl Sync for UserCommand
impl Unpin for UserCommand
impl UnsafeUnpin for UserCommand
impl UnwindSafe for UserCommand
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