pub enum UserAction {
Say(String),
EndConversation,
}Expand description
What the simulator wants to do next.
Variants§
Trait Implementations§
Source§impl Clone for UserAction
impl Clone for UserAction
Source§fn clone(&self) -> UserAction
fn clone(&self) -> UserAction
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 UserAction
impl Debug for UserAction
Source§impl PartialEq for UserAction
impl PartialEq for UserAction
impl Eq for UserAction
impl StructuralPartialEq for UserAction
Auto Trait Implementations§
impl Freeze for UserAction
impl RefUnwindSafe for UserAction
impl Send for UserAction
impl Sync for UserAction
impl Unpin for UserAction
impl UnsafeUnpin for UserAction
impl UnwindSafe for UserAction
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