Struct tauri_runtime::window::dpi::LogicalPosition
source · [−]pub struct LogicalPosition<P> {
pub x: P,
pub y: P,
}
Expand description
A position represented in logical pixels.
Fields
x: P
Vertical axis value.
y: P
Horizontal axis value.
Implementations
sourceimpl<T: Pixel> LogicalPosition<T>
impl<T: Pixel> LogicalPosition<T>
sourcepub fn cast<X: Pixel>(&self) -> LogicalPosition<X>
pub fn cast<X: Pixel>(&self) -> LogicalPosition<X>
Casts the logical size to another pixel type.
Trait Implementations
sourceimpl<P: Clone> Clone for LogicalPosition<P>
impl<P: Clone> Clone for LogicalPosition<P>
sourcefn clone(&self) -> LogicalPosition<P>
fn clone(&self) -> LogicalPosition<P>
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
sourceimpl<P: Debug> Debug for LogicalPosition<P>
impl<P: Debug> Debug for LogicalPosition<P>
sourceimpl<P: Default> Default for LogicalPosition<P>
impl<P: Default> Default for LogicalPosition<P>
sourcefn default() -> LogicalPosition<P>
fn default() -> LogicalPosition<P>
Returns the “default value” for a type. Read more
sourceimpl<'de, P> Deserialize<'de> for LogicalPosition<P> where
P: Deserialize<'de>,
impl<'de, P> Deserialize<'de> for LogicalPosition<P> where
P: Deserialize<'de>,
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<P: Hash> Hash for LogicalPosition<P>
impl<P: Hash> Hash for LogicalPosition<P>
sourceimpl<P: PartialEq> PartialEq<LogicalPosition<P>> for LogicalPosition<P>
impl<P: PartialEq> PartialEq<LogicalPosition<P>> for LogicalPosition<P>
sourcefn eq(&self, other: &LogicalPosition<P>) -> bool
fn eq(&self, other: &LogicalPosition<P>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &LogicalPosition<P>) -> bool
fn ne(&self, other: &LogicalPosition<P>) -> bool
This method tests for !=
.
sourceimpl<P> Serialize for LogicalPosition<P> where
P: Serialize,
impl<P> Serialize for LogicalPosition<P> where
P: Serialize,
impl<P: Copy> Copy for LogicalPosition<P>
impl<P: Eq> Eq for LogicalPosition<P>
impl<P> StructuralEq for LogicalPosition<P>
impl<P> StructuralPartialEq for LogicalPosition<P>
Auto Trait Implementations
impl<P> RefUnwindSafe for LogicalPosition<P> where
P: RefUnwindSafe,
impl<P> Send for LogicalPosition<P> where
P: Send,
impl<P> Sync for LogicalPosition<P> where
P: Sync,
impl<P> Unpin for LogicalPosition<P> where
P: Unpin,
impl<P> UnwindSafe for LogicalPosition<P> where
P: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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