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