pub trait Nameable {
    const NAME_SUFFIX: &'static [u8];
}
Expand description

A trait that can be implemented for marker structs to indicate that the command is ready to be named.

Required Associated Constants

The data that must be put after a name to comply with the type of command that is named.

Implementors