cgp_component/traits/
delegate_component.rs

1#[diagnostic::on_unimplemented(
2    message = "{Self} does not contain any DelegateComponent entry for {Name}",
3    note = "You might want to implement the provider trait for {Name} on {Self}"
4)]
5pub trait DelegateComponent<Name> {
6    type Delegate;
7}