Trait OnTargetAttribute
pub trait OnTargetAttribute<E, F, T> {
type Output;
// Required method
fn on_target(self, event: E, cb: F) -> Self::Output;
}
Expand description
Adds an event listener with a typed target to an element definition.
Required Associated Types§
type Output
type Output
The type of the element with the new attribute added.