pub enum NextActionKind {
RunCommand,
ExecuteTodo,
UseJjSkill,
WaitHuman,
}Expand description
Suggested next step kind for an agent.
Variants§
Trait Implementations§
Source§impl Clone for NextActionKind
impl Clone for NextActionKind
Source§fn clone(&self) -> NextActionKind
fn clone(&self) -> NextActionKind
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 moreimpl Copy for NextActionKind
Source§impl Debug for NextActionKind
impl Debug for NextActionKind
impl Eq for NextActionKind
Source§impl PartialEq for NextActionKind
impl PartialEq for NextActionKind
Source§fn eq(&self, other: &NextActionKind) -> bool
fn eq(&self, other: &NextActionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NextActionKind
impl Serialize for NextActionKind
impl StructuralPartialEq for NextActionKind
Auto Trait Implementations§
impl Freeze for NextActionKind
impl RefUnwindSafe for NextActionKind
impl Send for NextActionKind
impl Sync for NextActionKind
impl Unpin for NextActionKind
impl UnsafeUnpin for NextActionKind
impl UnwindSafe for NextActionKind
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