Struct libnoentiendo::platform::WinitPlatformProvider
source · pub struct WinitPlatformProvider { /* private fields */ }
Implementations§
Trait Implementations§
source§impl PlatformProvider for WinitPlatformProvider
impl PlatformProvider for WinitPlatformProvider
source§fn request_window(&self, config: WindowConfig)
fn request_window(&self, config: WindowConfig)
Request that the platform create a window of the specified size,
with the specified scale factor. If a window already exists, the platform
should resize it to the new size.
source§fn get_key_state(&self) -> KeyState<KeyPosition>
fn get_key_state(&self) -> KeyState<KeyPosition>
Get the current state of the user’s physical keyboard.
source§fn get_virtual_key_state(&self) -> KeyState<VirtualKey>
fn get_virtual_key_state(&self) -> KeyState<VirtualKey>
Get the state of a virtual keyboard (emulating the target system),
if one is available.
source§fn get_joystick_state(&self) -> JoystickState
fn get_joystick_state(&self) -> JoystickState
Get the current state of the connected joystick.
If no joystick is connected, this should return a default state.
source§fn print(&self, text: &str)
fn print(&self, text: &str)
Display the given string to the user, “out-of-band” from any other
graphics. This is used for text-mode systems. Implementations may choose
various ways to display this, such as a terminal message or a pop-up.
Auto Trait Implementations§
impl RefUnwindSafe for WinitPlatformProvider
impl Send for WinitPlatformProvider
impl Sync for WinitPlatformProvider
impl Unpin for WinitPlatformProvider
impl UnwindSafe for WinitPlatformProvider
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