#[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>(size: S) -> Size where
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,
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Size
impl<'de> Deserialize<'de> for Size
sourcepub fn deserialize<__D>(
__deserializer: __D
) -> Result<Size, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub 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
sourceimpl<P> From<LogicalSize<P>> for Size where
P: Pixel,
impl<P> From<LogicalSize<P>> for Size where
P: Pixel,
sourcepub fn from(size: LogicalSize<P>) -> Size
pub fn from(size: LogicalSize<P>) -> Size
Performs the conversion.
sourceimpl<P> From<PhysicalSize<P>> for Size where
P: Pixel,
impl<P> From<PhysicalSize<P>> for Size where
P: Pixel,
sourcepub fn from(size: PhysicalSize<P>) -> Size
pub fn from(size: PhysicalSize<P>) -> Size
Performs the conversion.
sourceimpl Serialize for Size
impl Serialize for Size
sourcepub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub 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