pub trait Emit11<R, C, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>{
type Output;
// Required method
fn emit(
&self,
a: T0,
b: T1,
c: T2,
d: T3,
e: T4,
f: T5,
g: T6,
h: T7,
i: T8,
j: T9,
k: T10,
) -> 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