#[non_exhaustive]
pub enum Size {
Physical(PhysicalSize<u32>),
Logical(LogicalSize<f64>),
}
Expand description
A size that’s either physical or logical.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Physical(PhysicalSize<u32>)
Logical(LogicalSize<f64>)
Implementations
sourceimpl Size
impl Size
pub fn new<S: Into<Size>>(size: S) -> Size
pub fn to_logical<P: Pixel>(&self, scale_factor: f64) -> LogicalSize<P>
pub fn to_physical<P: Pixel>(&self, scale_factor: f64) -> PhysicalSize<P>
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Size
impl<'de> Deserialize<'de> for Size
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> From<LogicalSize<P>> for Size
impl<P: Pixel> From<LogicalSize<P>> for Size
sourcefn from(size: LogicalSize<P>) -> Size
fn from(size: LogicalSize<P>) -> Size
Performs the conversion.
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
Performs the conversion.
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
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more