pub trait FindItemById { // Required method fn find_item_by_id(&self, expected_id: &str) -> Option<Item>; }