pub trait InitializationList {
// Required methods
fn has_property(&self, t: TypeId) -> bool;
fn set_properties(&self, context: &mut Context, person_id: PersonId);
}
Expand description
A trait that contains the initialization values for a new person. Do not use this directly, but instead use the tuple syntax.