pub trait Destination<Item> {
// Provided method
fn pickup(&mut self, _item: Item) { ... }
}Expand description
A trait for types that can receive matched items.
pub trait Destination<Item> {
// Provided method
fn pickup(&mut self, _item: Item) { ... }
}A trait for types that can receive matched items.