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§

source

fn send_terminal_event(&self, terminal_event: E) -> Result<(), Error>

Send the given terminal event

Implementations on Foreign Types§

source§

impl TerminalEventControlHandle<TableControllerCloseReason> for Ipv4RoutingTableControllerControlHandle

source§

impl TerminalEventControlHandle<TableControllerCloseReason> for Ipv6RoutingTableControllerControlHandle

Implementors§