pub trait CommandGroupIntoCommandNode<State>where
State: StateBound,{
// Required method
fn into_command_node(self) -> CommandNode<State>;
}Expand description
Converts all command group types and their builder types into a command node.
Required Methods§
Sourcefn into_command_node(self) -> CommandNode<State>
fn into_command_node(self) -> CommandNode<State>
Converts the current type into a CommandNode.
Returns:
CommandNode - The resulting command node.