Trait signals::Emitter

source ·
pub trait Emitter: Send {
    type input;

    fn emit(&mut self, _: Self::input);
}
Expand description

This is a polymorphic trait allowing multiple generic signals to be stored in a list.

Required Associated Types§

Required Methods§

Start running the built in callback functionality with the signal. Pass on the values to children.

Implementors§