[−][src]Struct egui::RawInput
What the integration gives to the gui. All coordinates in egui is in point/logical coordinates.
Fields
mouse_down: boolIs the button currently down?
mouse_pos: Option<Pos2>Current position of the mouse in points.
scroll_delta: Vec2How many pixels the user scrolled
screen_size: Vec2Size of the screen in points. TODO: this should be screen_rect for easy sandboxing.
pixels_per_point: Option<f32>Also known as device pixel ratio, > 1 for HDPI screens.
time: f64Time in seconds. Relative to whatever. Used for animation.
seconds_since_midnight: Option<f64>Local time. Only used for the clock in the example app.
events: Vec<Event>In-order events received this frame
Implementations
impl RawInput[src]
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RawInput
impl Send for RawInput
impl Sync for RawInput
impl Unpin for RawInput
impl UnwindSafe for RawInput
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>,