pub enum CommandMatcher {
Exact(&'static str),
Prefix(&'static str),
Regex(Regex),
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CommandMatcher
impl RefUnwindSafe for CommandMatcher
impl Send for CommandMatcher
impl Sync for CommandMatcher
impl Unpin for CommandMatcher
impl UnsafeUnpin for CommandMatcher
impl UnwindSafe for CommandMatcher
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