Struct sdl2::keyboard::TextInputUtil
source · pub struct TextInputUtil { /* private fields */ }
Expand description
Text input utility functions. Access with VideoSubsystem::text_input()
.
These functions require the video subsystem to be initialized and are not thread-safe.
let sdl_context = sdl2::init().unwrap();
let video_subsystem = sdl_context.video().unwrap();
// Start accepting text input events...
video_subsystem.text_input().start();
Implementations§
Auto Trait Implementations§
impl Freeze for TextInputUtil
impl RefUnwindSafe for TextInputUtil
impl !Send for TextInputUtil
impl !Sync for TextInputUtil
impl Unpin for TextInputUtil
impl UnwindSafe for TextInputUtil
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more