pub trait Factory<Data, View>where
Data: FactoryPrototype<View = View>,
View: FactoryView<Data::Root>,{
type Key: ?Sized;
// Required method
fn generate(&self, view: &View, sender: Sender<Data::Msg>);
}
Expand description
A container that is a able to efficiently update, generate and remove widgets that represent the data stored in the container.
Required Associated Types§
sourcetype Key: ?Sized
type Key: ?Sized
Key that provides additional information for the FactoryPrototype
functions.