Struct zng_layout::unit::Size

source ·
pub struct Size {
    pub width: Length,
    pub height: Length,
}
Expand description

2D size in Length units.

Fields§

§width: Length

width in length units.

§height: Length

height in length units.

Implementations§

source§

impl Size

source

pub fn new<W: Into<Length>, H: Into<Length>>(width: W, height: H) -> Self

New width, height from any Length unit.

source

pub fn splat(wh: impl Into<Length>) -> Self

New width, height from single value of any Length unit.

source

pub fn zero() -> Self

width: Length::zero, height: Length::zero

source

pub fn fill() -> Self

Size that fills the available space.

width: Length::fill, height: Length::fill

source

pub fn as_tuple(self) -> (Length, Length)

Returns (width, height).

source

pub fn as_array(self) -> [Length; 2]

Returns [width, height].

source

pub fn is_default(&self) -> bool

Returns true if all values are Length::Default.

source

pub fn replace_default(&mut self, overwrite: &Size)

Replaces Length::Default values with overwrite values.

source

pub fn as_vector(self) -> Vector

Returns a vector of x: width and y: height.

Trait Implementations§

source§

impl<'a, 'b> Add<&'a Size> for &'b Point

§

type Output = Point

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<S: Into<Size>> Add<S> for Size

§

type Output = Size

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'a> AddAssign<&'a Size> for Point

source§

fn add_assign(&mut self, rhs: &'a Size)

Performs the += operation. Read more
source§

impl<S: Into<Size>> AddAssign<S> for Size

source§

fn add_assign(&mut self, rhs: S)

Performs the += operation. Read more
source§

impl Clone for Size

source§

fn clone(&self) -> Size

Returns a copy 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 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() -> Size

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<'a, S: Into<Factor2d>> Div<S> for &'a Size

§

type Output = Size

The resulting type after applying the / operator.
source§

fn div(self, rhs: S) -> Self::Output

Performs the / operation. Read more
source§

impl<S: Into<Factor2d>> Div<S> for Size

§

type Output = Size

The resulting type after applying the / operator.
source§

fn div(self, rhs: S) -> Self

Performs the / operation. Read more
source§

impl<S: Into<Factor2d>> DivAssign<S> for Size

source§

fn div_assign(&mut self, rhs: S)

Performs the /= operation. Read more
source§

impl<W, H> From<(W, H)> for Size
where W: Into<Length>, H: Into<Length>,

source§

fn from((width, height): (W, H)) -> Self

Converts to this type from the input type.
source§

impl From<Factor> for Size

source§

fn from(norm: Factor) -> Self

Splat relative length.

source§

impl From<Factor2d> for Size

source§

fn from(scale: Factor2d) -> Self

To relative width and height.

source§

impl From<FactorPercent> for Size

source§

fn from(percent: FactorPercent) -> Self

Splat relative length.

source§

impl From<Length> for Size

source§

fn from(all: Length) -> Self

Splat.

source§

impl From<Rect> for Size

source§

fn from(r: Rect) -> Self

Converts to this type from the input type.
source§

impl From<Size> for Rect

source§

fn from(size: Size) -> Self

Converts to this type from the input type.
source§

impl From<Size> for Vector

source§

fn from(s: Size) -> Self

Converts to this type from the input type.
source§

impl From<Size2D<Dip, Dip>> for Size

source§

fn from(size: DipSize) -> Self

Converts to this type from the input type.
source§

impl From<Size2D<Px, Px>> for Size

source§

fn from(size: PxSize) -> Self

Converts to this type from the input type.
source§

impl From<Vector> for Size

source§

fn from(v: Vector) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Size

source§

fn from(f: f32) -> Self

Splat exact length.

source§

impl From<i32> for Size

source§

fn from(i: i32) -> Self

Splat exact length.

source§

impl IntoVar<Rect> for Size

§

type Var = LocalVar<Rect>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl<W, H> IntoVar<Size> for (W, H)
where W: Into<Length> + Clone, H: Into<Length> + Clone,

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for Factor

source§

fn into_var(self) -> Self::Var

Splat relative length.

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for Factor2d

source§

fn into_var(self) -> Self::Var

To relative width and height.

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for FactorPercent

source§

fn into_var(self) -> Self::Var

Splat relative length.

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for Length

source§

fn into_var(self) -> Self::Var

Splat.

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for Rect

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for DipSize

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for PxSize

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for Vector

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for f32

source§

fn into_var(self) -> Self::Var

Splat exact length.

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for i32

source§

fn into_var(self) -> Self::Var

Splat exact length.

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Vector> for Size

§

type Var = LocalVar<Vector>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl Layout2d for Size

§

type Px = Size2D<Px, Px>

Pixel type.
source§

fn layout_dft(&self, default: Self::Px) -> Self::Px

Compute the pixel value in the current LAYOUT context with default.
source§

fn affect_mask(&self) -> LayoutMask

Compute a LayoutMask that flags all contextual values that affect the result of layout.
source§

fn layout(&self) -> Self::Px

Compute the pixel value in the current LAYOUT context.
source§

impl<'a, S: Into<Factor2d>> Mul<S> for &'a Size

§

type Output = Size

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<S: Into<Factor2d>> Mul<S> for Size

§

type Output = Size

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<S: Into<Factor2d>> MulAssign<S> for Size

source§

fn mul_assign(&mut self, rhs: S)

Performs the *= operation. Read more
source§

impl PartialEq for Size

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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<'a, 'b> Sub<&'a Size> for &'b Point

§

type Output = Point

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl<S: Into<Size>> Sub<S> for Size

§

type Output = Size

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl<'a> SubAssign<&'a Size> for Point

source§

fn sub_assign(&mut self, rhs: &'a Size)

Performs the -= operation. Read more
source§

impl<S: Into<Size>> SubAssign<S> for Size

source§

fn sub_assign(&mut self, rhs: S)

Performs the -= operation. Read more
source§

impl Transitionable for Size

source§

fn lerp(self, to: &Self, step: EasingStep) -> Self

Sample the linear interpolation from self -> to by step.
source§

impl IntoValue<Rect> for Size

source§

impl IntoValue<Size> for Factor

source§

impl IntoValue<Size> for Factor2d

source§

impl IntoValue<Size> for FactorPercent

source§

impl IntoValue<Size> for Length

source§

impl IntoValue<Size> for Rect

source§

impl IntoValue<Size> for DipSize

source§

impl IntoValue<Size> for PxSize

source§

impl IntoValue<Size> for Vector

source§

impl IntoValue<Size> for f32

source§

impl IntoValue<Size> for i32

source§

impl IntoValue<Vector> 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> AnyVarValue for T
where T: VarValue,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access to dyn Any methods.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Access to mut dyn Any methods.
source§

fn clone_boxed(&self) -> Box<dyn AnyVarValue>

Clone the value.
source§

fn clone_boxed_var(&self) -> Box<dyn AnyVar>

Clone the value into a new boxed LocalVar<Self>.
source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Access to Box<dyn Any> methods.
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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> IntoVar<T> for T
where T: VarValue,

§

type Var = LocalVar<T>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <T as IntoVar<T>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

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

§

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§

default fn to_string(&self) -> String

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

impl<T> ToTxt for T
where T: ToString,

source§

fn to_txt(&self) -> Txt

Converts the given value to an owned Txt. Read more
source§

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

§

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>,

§

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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

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

source§

impl<T> IntoValue<T> for T
where T: VarValue,

source§

impl<T> VarValue for T
where T: Debug + Clone + PartialEq + Any + Send + Sync,