pub trait SendInput<Input, Path> {
// Required method
fn emit(&mut self, input: Input);
}Expand description
Static evidence that a send product contains one request lane.
Implementations append the input exactly once to that lane and leave every
other lane unchanged. Path distinguishes repeated request types without
erasing their position or choosing a lane at runtime.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".