Skip to main content

KeyboardProxyInterface

Trait KeyboardProxyInterface 

Source
pub trait KeyboardProxyInterface: Send + Sync {
    type AddListenerResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn add_listener(
        &self,
        view_ref: ViewRef,
        listener: ClientEnd<KeyboardListenerMarker>,
    ) -> Self::AddListenerResponseFut;
}

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§