Struct tauri_runtime::window::dpi::PhysicalSize
source · [−]pub struct PhysicalSize<P> {
pub width: P,
pub height: P,
}
Expand description
A size represented in physical pixels.
Fields
width: P
height: P
Implementations
sourceimpl<P> PhysicalSize<P>
impl<P> PhysicalSize<P>
sourceimpl<P: Pixel> PhysicalSize<P>
impl<P: Pixel> PhysicalSize<P>
pub fn from_logical<T: Into<LogicalSize<X>>, X: Pixel>(
logical: T,
scale_factor: f64
) -> Self
pub fn to_logical<X: Pixel>(&self, scale_factor: f64) -> LogicalSize<X>
pub fn cast<X: Pixel>(&self) -> PhysicalSize<X>
Trait Implementations
sourceimpl<P: Clone> Clone for PhysicalSize<P>
impl<P: Clone> Clone for PhysicalSize<P>
sourcefn clone(&self) -> PhysicalSize<P>
fn clone(&self) -> PhysicalSize<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 PhysicalSize<P>
impl<P: Debug> Debug for PhysicalSize<P>
sourceimpl<P: Default> Default for PhysicalSize<P>
impl<P: Default> Default for PhysicalSize<P>
sourcefn default() -> PhysicalSize<P>
fn default() -> PhysicalSize<P>
Returns the “default value” for a type. Read more
sourceimpl<'de, P> Deserialize<'de> for PhysicalSize<P> where
P: Deserialize<'de>,
impl<'de, P> Deserialize<'de> for PhysicalSize<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: Pixel, X: Pixel> From<[X; 2]> for PhysicalSize<P>
impl<P: Pixel, X: Pixel> From<[X; 2]> for PhysicalSize<P>
sourcefn from([x, y]: [X; 2]) -> PhysicalSize<P>
fn from([x, y]: [X; 2]) -> PhysicalSize<P>
Converts to this type from the input type.
sourceimpl<P: Pixel, X: Pixel> From<(X, X)> for PhysicalSize<P>
impl<P: Pixel, X: Pixel> From<(X, X)> for PhysicalSize<P>
sourcefn from((x, y): (X, X)) -> PhysicalSize<P>
fn from((x, y): (X, X)) -> PhysicalSize<P>
Converts to this type from the input type.
sourceimpl<P: Pixel, X: Pixel> From<PhysicalSize<P>> for [X; 2]
impl<P: Pixel, X: Pixel> From<PhysicalSize<P>> for [X; 2]
sourcefn from(size: PhysicalSize<P>) -> Self
fn from(size: PhysicalSize<P>) -> Self
Converts to this type from the input type.
sourceimpl<P: Pixel, X: Pixel> From<PhysicalSize<P>> for (X, X)
impl<P: Pixel, X: Pixel> From<PhysicalSize<P>> for (X, X)
sourcefn from(size: PhysicalSize<P>) -> Self
fn from(size: PhysicalSize<P>) -> Self
Converts to this type from the input type.
sourceimpl<P: Pixel> From<PhysicalSize<P>> for Size
impl<P: Pixel> From<PhysicalSize<P>> for Size
sourcefn from(size: PhysicalSize<P>) -> Size
fn from(size: PhysicalSize<P>) -> Size
Converts to this type from the input type.
sourceimpl<P: Hash> Hash for PhysicalSize<P>
impl<P: Hash> Hash for PhysicalSize<P>
sourceimpl<P: PartialEq> PartialEq<PhysicalSize<P>> for PhysicalSize<P>
impl<P: PartialEq> PartialEq<PhysicalSize<P>> for PhysicalSize<P>
sourcefn eq(&self, other: &PhysicalSize<P>) -> bool
fn eq(&self, other: &PhysicalSize<P>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PhysicalSize<P>) -> bool
fn ne(&self, other: &PhysicalSize<P>) -> bool
This method tests for !=
.
sourceimpl<P> Serialize for PhysicalSize<P> where
P: Serialize,
impl<P> Serialize for PhysicalSize<P> where
P: Serialize,
impl<P: Copy> Copy for PhysicalSize<P>
impl<P: Eq> Eq for PhysicalSize<P>
impl<P> StructuralEq for PhysicalSize<P>
impl<P> StructuralPartialEq for PhysicalSize<P>
Auto Trait Implementations
impl<P> RefUnwindSafe for PhysicalSize<P> where
P: RefUnwindSafe,
impl<P> Send for PhysicalSize<P> where
P: Send,
impl<P> Sync for PhysicalSize<P> where
P: Sync,
impl<P> Unpin for PhysicalSize<P> where
P: Unpin,
impl<P> UnwindSafe for PhysicalSize<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