Struct winit::dpi::PhysicalSize [−][src]
pub struct PhysicalSize<P> {
pub width: P,
pub height: P,
}A size represented in physical pixels.
Fields
width: Pheight: PImplementations
impl<P> PhysicalSize<P>[src]
impl<P: Pixel> PhysicalSize<P>[src]
pub fn from_logical<T: Into<LogicalSize<X>>, X: Pixel>(
logical: T,
scale_factor: f64
) -> Self[src]
logical: T,
scale_factor: f64
) -> Self
pub fn to_logical<X: Pixel>(&self, scale_factor: f64) -> LogicalSize<X>[src]
pub fn cast<X: Pixel>(&self) -> PhysicalSize<X>[src]
Trait Implementations
impl<P: Clone> Clone for PhysicalSize<P>[src]
fn clone(&self) -> PhysicalSize<P>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<P: Copy> Copy for PhysicalSize<P>[src]
impl<P: Debug> Debug for PhysicalSize<P>[src]
impl<P: Eq> Eq for PhysicalSize<P>[src]
impl<P: Pixel, X: Pixel> From<[X; 2]> for PhysicalSize<P>[src]
fn from([x, y]: [X; 2]) -> PhysicalSize<P>[src]
impl<P: Pixel, X: Pixel> From<(X, X)> for PhysicalSize<P>[src]
fn from((x, y): (X, X)) -> PhysicalSize<P>[src]
impl<P: Pixel> From<PhysicalSize<P>> for Size[src]
fn from(size: PhysicalSize<P>) -> Size[src]
impl<P: Hash> Hash for PhysicalSize<P>[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<P: Pixel, X: Pixel> Into<[X; 2]> for PhysicalSize<P>[src]
impl<P: Pixel, X: Pixel> Into<(X, X)> for PhysicalSize<P>[src]
impl<P: PartialEq> PartialEq<PhysicalSize<P>> for PhysicalSize<P>[src]
fn eq(&self, other: &PhysicalSize<P>) -> bool[src]
fn ne(&self, other: &PhysicalSize<P>) -> bool[src]
impl<P> StructuralEq for PhysicalSize<P>[src]
impl<P> StructuralPartialEq for PhysicalSize<P>[src]
Auto Trait Implementations
impl<P> RefUnwindSafe for PhysicalSize<P> where
P: RefUnwindSafe,
P: RefUnwindSafe,
impl<P> Send for PhysicalSize<P> where
P: Send,
P: Send,
impl<P> Sync for PhysicalSize<P> where
P: Sync,
P: Sync,
impl<P> Unpin for PhysicalSize<P> where
P: Unpin,
P: Unpin,
impl<P> UnwindSafe for PhysicalSize<P> where
P: UnwindSafe,
P: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,