pub trait Item {
    fn get_name_address(&self) -> u32;
}
Available on crate feature table only.
Expand description

Represents an item to be stored in an ItemTable.

Required Methods

Returns the address of the name of this item in its string section.

Implementors