ImplTextfieldDelegate

Trait ImplTextfieldDelegate 

Source
pub trait ImplTextfieldDelegate: ImplViewDelegate {
    // Provided methods
    fn on_key_event(
        &self,
        textfield: Option<&mut Textfield>,
        event: Option<&KeyEvent>,
    ) -> c_int { ... }
    fn on_after_user_action(&self, textfield: Option<&mut Textfield>) { ... }
    fn init_methods(object: &mut _cef_textfield_delegate_t) { ... }
    fn get_raw(&self) -> *mut _cef_textfield_delegate_t { ... }
}

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§