pub enum MessagingCommandParse {
NotCommand,
InvalidSwitch,
Command(MessagingSystemCommand),
}Variants§
Trait Implementations§
Source§impl Clone for MessagingCommandParse
impl Clone for MessagingCommandParse
Source§fn clone(&self) -> MessagingCommandParse
fn clone(&self) -> MessagingCommandParse
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 MessagingCommandParse
Source§impl Debug for MessagingCommandParse
impl Debug for MessagingCommandParse
impl Eq for MessagingCommandParse
Source§impl PartialEq for MessagingCommandParse
impl PartialEq for MessagingCommandParse
impl StructuralPartialEq for MessagingCommandParse
Auto Trait Implementations§
impl Freeze for MessagingCommandParse
impl RefUnwindSafe for MessagingCommandParse
impl Send for MessagingCommandParse
impl Sync for MessagingCommandParse
impl Unpin for MessagingCommandParse
impl UnsafeUnpin for MessagingCommandParse
impl UnwindSafe for MessagingCommandParse
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