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
sourceimpl TextInputUtil
impl TextInputUtil
Auto Trait Implementations
impl RefUnwindSafe for TextInputUtil
impl !Send for TextInputUtil
impl !Sync for TextInputUtil
impl Unpin for TextInputUtil
impl UnwindSafe for TextInputUtil
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more