Type Alias zng_layout::unit::DipSize

source ·
pub type DipSize = Size2D<Dip, Dip>;
Expand description

A size in device pixels.

Aliased Type§

struct DipSize {
    pub width: Dip,
    pub height: Dip,
    /* private fields */
}

Fields§

§width: Dip

The extent of the element in the U units along the x axis (usually horizontal).

§height: Dip

The extent of the element in the U units along the y axis (usually vertical).

Trait Implementations§

source§

impl Div<Factor2d> for DipSize

§

type Output = Size2D<Dip, Dip>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> DipSize

Performs the / operation. Read more
source§

impl DivAssign<Factor2d> for DipSize

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. 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 Mul<Factor2d> for DipSize

§

type Output = Size2D<Dip, Dip>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> DipSize

Performs the * operation. Read more
source§

impl MulAssign<Factor2d> for DipSize

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl IntoValue<Size> for DipSize