pub trait SimpleTextProvider {
// Required method
fn get_pressed_chars(&self) -> Vec<char>;
}Expand description
Provides the characters typed during the current frame.
Required Methods§
Sourcefn get_pressed_chars(&self) -> Vec<char>
fn get_pressed_chars(&self) -> Vec<char>
Returns entered characters in backend-provided order.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".