Enum Size

Source
pub enum Size {
    Pixels(Numeric),
    Percent(Numeric),
    Combined(Numeric, Numeric),
}
Expand description

A Size value that can be either a concrete pixel value or a percent of parent bounds.

Variants§

§

Pixels(Numeric)

§

Percent(Numeric)

§

Combined(Numeric, Numeric)

Pixel component, Percent component

Implementations§

Source§

impl Size

Source

pub fn ZERO() -> Self

Source

pub fn expect_percent(&self) -> f64

Returns the wrapped percent value normalized as a float, such that 100% => 1.0. Panics if wrapped type is not a percentage.

Source

pub fn expect_pixels(&self) -> Numeric

Returns the pixel value Panics if wrapped type is not pixels.

Source§

impl Size

Source

pub fn evaluate(&self, bounds: (f64, f64), axis: Axis) -> f64

Source§

impl Size

Source

pub fn get_pixels(&self, parent: f64) -> f64

Trait Implementations§

Source§

impl Add<Percent> for Size

Source§

type Output = Size

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Percent) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Size> for Percent

Source§

type Output = Size

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Size) -> Self::Output

Performs the + operation. Read more
Source§

impl Add for Size

Source§

type Output = Size

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl Clone for Size

Source§

fn clone(&self) -> Size

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl CoercionRules for Size

Source§

fn try_coerce(pax_value: PaxValue) -> Result<Self, String>

Source§

impl Debug for Size

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Size

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Size

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for Size

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Size> for Numeric

Source§

fn from(value: Size) -> Self

Converts to this type from the input type.
Source§

impl Hash for Size

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl HelperFunctions for Size

Source§

impl Interpolatable for Size

Source§

fn interpolate(&self, other: &Self, t: f64) -> Self

Source§

impl Into<Rotation> for Size

Source§

fn into(self) -> Rotation

Converts this type into the (usually inferred) input type.
Source§

impl Into<Size> for Percent

Source§

fn into(self) -> Size

Converts this type into the (usually inferred) input type.
Source§

impl Mul for Size

Source§

type Output = Size

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl Neg for Size

Source§

type Output = Size

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl PartialEq for Size

Source§

fn eq(&self, other: &Size) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Size

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Sub<Percent> for Size

Source§

type Output = Size

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Percent) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Size> for Percent

Source§

type Output = Size

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Size) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for Size

Source§

type Output = Size

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl ToPaxValue for Size

Source§

impl Copy for Size

Source§

impl StructuralPartialEq for Size

Auto Trait Implementations§

§

impl Freeze for Size

§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> RoundFrom<T> for T

Source§

fn round_from(x: T) -> T

Performs the conversion.
Source§

impl<T, U> RoundInto<U> for T
where U: RoundFrom<T>,

Source§

fn round_into(self) -> U

Performs the conversion.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> PropertyValue for T
where T: Default + Clone + Interpolatable + 'static,