[][src]Struct makepad_render::WindowGeom

pub struct WindowGeom {
    pub dpi_factor: f32,
    pub vr_is_presenting: bool,
    pub is_fullscreen: bool,
    pub is_topmost: bool,
    pub position: Vec2,
    pub inner_size: Vec2,
    pub outer_size: Vec2,
}

Fields

dpi_factor: f32vr_is_presenting: boolis_fullscreen: boolis_topmost: boolposition: Vec2inner_size: Vec2outer_size: Vec2

Trait Implementations

impl Clone for WindowGeom[src]

impl Debug for WindowGeom[src]

impl Default for WindowGeom[src]

impl PartialEq<WindowGeom> for WindowGeom[src]

impl StructuralPartialEq for WindowGeom[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.