pub trait InstanceChild {
type ConcreteInstance: Instance;
// Required method
fn instance(&self) -> &Self::ConcreteInstance;
}pub trait InstanceChild {
type ConcreteInstance: Instance;
// Required method
fn instance(&self) -> &Self::ConcreteInstance;
}