pub trait Container {
type Item;
// Required method
fn add(&mut self, item: Self::Item);
}Expand description
A trait that should be implemented by types that can contain other deserializable types.
pub trait Container {
type Item;
// Required method
fn add(&mut self, item: Self::Item);
}A trait that should be implemented by types that can contain other deserializable types.