pub trait Emit0<R, C>{
type Output;
// Required method
fn emit(&self) -> Self::Output;
}
Expand description
Emit trait for signals with slots that accept the corresponding number of arguments.
Required Associated Types§
Sourcetype Output
type Output
The return value of emit
will be C::Output
for Signals and Option<C::Output>
for EmitHandles