1use crate::prelude::*; 2 3#[async_trait] 4pub trait InventoryItemInfo { 5 fn name(&self) -> String; 6}