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§
Sourcefn on_key_event(
&self,
textfield: Option<&mut Textfield>,
event: Option<&KeyEvent>,
) -> c_int
fn on_key_event( &self, textfield: Option<&mut Textfield>, event: Option<&KeyEvent>, ) -> c_int
See _cef_textfield_delegate_t::on_key_event
for more documentation.
Sourcefn on_after_user_action(&self, textfield: Option<&mut Textfield>)
fn on_after_user_action(&self, textfield: Option<&mut Textfield>)
See _cef_textfield_delegate_t::on_after_user_action
for more documentation.
fn init_methods(object: &mut _cef_textfield_delegate_t)
fn get_raw(&self) -> *mut _cef_textfield_delegate_t
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.