pub enum WindowPosition {
Physical(PhysicalPosition),
Logical(LogicalPosition),
}
Expand description
The position of the window in either physical or logical pixels. This is used
with Window::set_position
.
Variants
Physical(PhysicalPosition)
The position in physical pixels.
Logical(LogicalPosition)
The position in logical pixels.
Implementations
impl WindowPosition
impl WindowPosition
pub fn to_physical(&self, scale_factor: f32) -> PhysicalPosition
pub fn to_physical(&self, scale_factor: f32) -> PhysicalPosition
Turn the WindowPosition
into a PhysicalPosition
.
Trait Implementations
impl Clone for WindowPosition
impl Clone for WindowPosition
fn clone(&self) -> WindowPosition
fn clone(&self) -> WindowPosition
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for WindowPosition
impl Debug for WindowPosition
impl From<LogicalPosition> for WindowPosition
impl From<LogicalPosition> for WindowPosition
fn from(original: LogicalPosition) -> WindowPosition
fn from(original: LogicalPosition) -> WindowPosition
Converts to this type from the input type.
impl From<PhysicalPosition> for WindowPosition
impl From<PhysicalPosition> for WindowPosition
fn from(original: PhysicalPosition) -> WindowPosition
fn from(original: PhysicalPosition) -> WindowPosition
Converts to this type from the input type.
impl PartialEq<WindowPosition> for WindowPosition
impl PartialEq<WindowPosition> for WindowPosition
fn eq(&self, other: &WindowPosition) -> bool
fn eq(&self, other: &WindowPosition) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for WindowPosition
Auto Trait Implementations
impl RefUnwindSafe for WindowPosition
impl Send for WindowPosition
impl Sync for WindowPosition
impl Unpin for WindowPosition
impl UnwindSafe for WindowPosition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more