Skip to main content

SimpleInventory

Type Alias SimpleInventory 

Source
pub type SimpleInventory<I> = Inventory<I, 256>;
Expand description

Convenience alias for a large-capacity inventory.

N = 256 is effectively unbounded for any real DOTZUKI item table. This alias exists for forward-compatibility: if a second generic parameter is ever added to Inventory for tag/kind filtering, SimpleInventory will expand to Inventory<I, 256, ()> so that existing usage keeps compiling.

Aliased Typeยง

pub struct SimpleInventory<I> { /* private fields */ }