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: f32
§vr_is_presenting: bool
§is_fullscreen: bool
§is_topmost: bool
§position: Vec2
§inner_size: Vec2
§outer_size: Vec2
Trait Implementations§
Source§impl Clone for WindowGeom
impl Clone for WindowGeom
Source§fn clone(&self) -> WindowGeom
fn clone(&self) -> WindowGeom
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WindowGeom
impl Debug for WindowGeom
Source§impl Default for WindowGeom
impl Default for WindowGeom
Source§fn default() -> WindowGeom
fn default() -> WindowGeom
Returns the “default value” for a type. Read more
Source§impl PartialEq for WindowGeom
impl PartialEq for WindowGeom
impl StructuralPartialEq for WindowGeom
Auto Trait Implementations§
impl Freeze for WindowGeom
impl RefUnwindSafe for WindowGeom
impl Send for WindowGeom
impl Sync for WindowGeom
impl Unpin for WindowGeom
impl UnwindSafe for WindowGeom
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