Struct commands::command_table::CommandTableEntry [] [src]

pub struct CommandTableEntry {
    pub name: String,
    pub command: Rc<Command>,
}

Information about a command in a command table.

Fields

name

Name of a command. This is used for command line entry.

command

The underlying command that can be executed.