pub struct WinitPlatformProvider { /* private fields */ }

Implementations§

source§

impl WinitPlatformProvider

source

pub fn new( config: Arc<Mutex<Option<WindowConfig>>>, key_state: Arc<Mutex<KeyState<VirtualKeyCode>>>, joystick_state: Arc<Mutex<JoystickState>> ) -> Self

Trait Implementations§

source§

impl PlatformProvider for WinitPlatformProvider

source§

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>

Get the current state of the user’s physical keyboard.
source§

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

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)

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.
source§

fn input(&self) -> String

Read a string input from the user, “out-of-band” from any other graphics. This is used for text-mode systems. Implementations may choose various ways to prompt for this, such as a terminal prompt or a pop-up dialog.
source§

fn random(&self) -> u8

Return a random number between 0 and 255. This exists as some platforms (such as the web) have a different source of randomness.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V