pub enum CommandParseResult {
NotACommand,
InvalidCommand,
ValidCommand(String, Vec<String>),
}Variants§
Auto Trait Implementations§
impl Freeze for CommandParseResult
impl RefUnwindSafe for CommandParseResult
impl Send for CommandParseResult
impl Sync for CommandParseResult
impl Unpin for CommandParseResult
impl UnwindSafe for CommandParseResult
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