Enum wry::application::dpi::Size
source · pub enum Size {
Physical(PhysicalSize<u32>),
Logical(LogicalSize<f64>),
}
Expand description
A size that’s either physical or logical.
Variants§
Physical(PhysicalSize<u32>)
Logical(LogicalSize<f64>)
Implementations§
source§impl Size
impl Size
pub fn new<S>(val: S) -> Sizewhere S: Into<Size>,
pub fn to_logical<P>(&self, scale_factor: f64) -> LogicalSize<P>where P: Pixel,
pub fn to_physical<P>(&self, scale_factor: f64) -> PhysicalSize<P>where P: Pixel,
pub fn width(&self) -> PixelUnit
pub fn height(&self) -> PixelUnit
Trait Implementations§
source§impl<'de> Deserialize<'de> for Size
impl<'de> Deserialize<'de> for Size
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<Size, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<Size, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<P> From<LogicalSize<P>> for Sizewhere
P: Pixel,
impl<P> From<LogicalSize<P>> for Sizewhere P: Pixel,
source§fn from(val: LogicalSize<P>) -> Size
fn from(val: LogicalSize<P>) -> Size
Converts to this type from the input type.
source§impl<P> From<PhysicalSize<P>> for Sizewhere
P: Pixel,
impl<P> From<PhysicalSize<P>> for Sizewhere P: Pixel,
source§fn from(val: PhysicalSize<P>) -> Size
fn from(val: PhysicalSize<P>) -> Size
Converts to this type from the input type.
source§impl PartialEq for Size
impl PartialEq for Size
source§impl PartialOrd for Size
impl PartialOrd for Size
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for Size
impl Serialize for Size
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for Size
impl StructuralPartialEq for Size
Auto Trait Implementations§
impl RefUnwindSafe for Size
impl Send for Size
impl Sync for Size
impl Unpin for Size
impl UnwindSafe for Size
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more