Trait abxml::model::TableType [] [src]

pub trait TableType {
    type Configuration: Configuration;
    fn get_id(&self) -> Result<u8>;
    fn get_amount(&self) -> Result<u32>;
    fn get_configuration(&self) -> Result<Self::Configuration>;
    fn get_entry(&self, index: u32) -> Result<Entry>;
}

Associated Types

Required Methods

Implementors