The trait that all [`CommandParser`]s implement. You can take a look at the [builtin parser](crate::builtin_parser) for an advanced example. ``` # use bevy::ecs::world::World; # use bevy_dev_console::command::CommandParser; # use bevy::log::info; # use bevy_dev_console::ui::COMMAND_RESULT_NAME; pub struct MyCustomParser; impl CommandParser for MyCustomParser { fn parse(&self, command: &str, worl
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected