pub trait TerminalEventControlHandle<E> {
// Required method
fn send_terminal_event(&self, terminal_event: E) -> Result<(), Error>;
}Expand description
A FIDL ControlHandle that can send a terminal event.
Required Methods§
Sourcefn send_terminal_event(&self, terminal_event: E) -> Result<(), Error>
fn send_terminal_event(&self, terminal_event: E) -> Result<(), Error>
Send the given terminal event
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".