[−][src]Struct egui::InputState
What egui maintains
Fields
raw: RawInputThe raw input we got this fraem
mouse: MouseInputscroll_delta: Vec2How many pixels the user scrolled
screen_size: Vec2Size of the screen in points.
pixels_per_point: f32Also known as device pixel ratio, > 1 for HDPI screens.
time: f64Time in seconds. Relative to whatever. Used for animation.
unstable_dt: f32Time since last frame, in seconds. This can be very unstable in reactive mode (when we don't paint each frame).
predicted_dt: f32Can be used to fast-forward to next frame for instance feedback. hacky.
seconds_since_midnight: Option<f64>Local time. Only used for the clock in the demo app.
events: Vec<Event>In-order events received this frame
Implementations
impl InputState[src]
#[must_use]pub fn begin_frame(self, new: RawInput) -> InputState[src]
pub fn wants_repaint(&self) -> bool[src]
pub fn key_pressed(&self, desired_key: Key) -> bool[src]
Was the given key pressed this frame?
pub fn key_released(&self, desired_key: Key) -> bool[src]
Was the given key released this frame?
impl InputState[src]
Trait Implementations
impl Clone for InputState[src]
fn clone(&self) -> InputState[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for InputState[src]
impl Default for InputState[src]
fn default() -> InputState[src]
Auto Trait Implementations
impl RefUnwindSafe for InputState
impl Send for InputState
impl Sync for InputState
impl Unpin for InputState
impl UnwindSafe for InputState
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,