pub trait MaxStackSizeExt {
// Required method
fn max_stack_size(&self) -> i32;
// Provided method
fn stackable(&self) -> bool { ... }
}
Required Methods§
Sourcefn max_stack_size(&self) -> i32
fn max_stack_size(&self) -> i32
Get the maximum stack size for this item.
This is a signed integer to be consistent with the count
field of
ItemSlotData
.