Struct zng_app::view_process::WindowOpenData
source · pub struct WindowOpenData {
pub state: WindowStateAll,
pub monitor: Option<MonitorId>,
pub position: (PxPoint, DipPoint),
pub size: DipSize,
pub scale_factor: Factor,
pub render_mode: RenderMode,
pub safe_padding: DipSideOffsets,
}
Expand description
Information about a successfully opened window.
Fields§
§state: WindowStateAll
Window complete state.
monitor: Option<MonitorId>
Monitor that contains the window.
position: (PxPoint, DipPoint)
Final top-left offset of the window (excluding outer chrome).
The values are the global position and the position in the monitor.
size: DipSize
Final dimensions of the client area of the window (excluding outer chrome).
scale_factor: Factor
Final scale factor.
render_mode: RenderMode
Actual render mode, can be different from the requested mode if it is not available.
safe_padding: DipSideOffsets
Padding that must be applied to the window content so that it stays clear of screen obstructions such as a camera notch cutout.
Note that the unsafe area must still be rendered as it may be partially visible, just don’t place nay interactive or important content outside of this padding.
Trait Implementations§
source§impl Clone for WindowOpenData
impl Clone for WindowOpenData
source§fn clone(&self) -> WindowOpenData
fn clone(&self) -> WindowOpenData
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 moreAuto Trait Implementations§
impl Freeze for WindowOpenData
impl RefUnwindSafe for WindowOpenData
impl Send for WindowOpenData
impl Sync for WindowOpenData
impl Unpin for WindowOpenData
impl UnwindSafe for WindowOpenData
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more