pub enum ShellInput {
Empty,
Help,
Exit,
Mode(BinanceMode),
Command(AppCommand),
}Variants§
Trait Implementations§
Source§impl Clone for ShellInput
impl Clone for ShellInput
Source§fn clone(&self) -> ShellInput
fn clone(&self) -> ShellInput
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 ShellInput
impl Debug for ShellInput
Source§impl PartialEq for ShellInput
impl PartialEq for ShellInput
impl StructuralPartialEq for ShellInput
Auto Trait Implementations§
impl Freeze for ShellInput
impl RefUnwindSafe for ShellInput
impl Send for ShellInput
impl Sync for ShellInput
impl Unpin for ShellInput
impl UnsafeUnpin for ShellInput
impl UnwindSafe for ShellInput
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