pub trait KeyboardActionScope {
// Required method
fn default_keyboard_action(&self, action: ImeAction);
}Expand description
Scope provided to KeyboardActions callbacks, allowing fallback to the
platform’s default IME action behavior. Corresponds to Compose’s KeyboardActionScope.
Required Methods§
fn default_keyboard_action(&self, action: ImeAction)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".