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>(size: 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 clamp<S>(input: S, min: S, max: S, scale_factor: f64) -> Sizewhere S: Into<Size>,
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(size: LogicalSize<P>) -> Size
fn from(size: 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(size: PhysicalSize<P>) -> Size
fn from(size: PhysicalSize<P>) -> Size
Converts to this type from the input type.
source§impl PartialEq<Size> for Size
impl PartialEq<Size> for Size
source§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