1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! # CommandParser - reset_group Methods //! //! This module contains method implementations for `CommandParser`. //! //! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs) use super::commandparser_type::CommandParser; impl CommandParser { /// Reset the parser. pub fn reset(&mut self) { self.pos = 0; self.tokens.clear(); } }