Enum rsass::Unit [] [src]

pub enum Unit {
    Em,
    Ex,
    Ch,
    Rem,
    Vw,
    Vh,
    Vmin,
    Vmax,
    Cm,
    Mm,
    Q,
    In,
    Pt,
    Pc,
    Px,
    Deg,
    Grad,
    Rad,
    Turn,
    S,
    Ms,
    Hz,
    Khz,
    Dpi,
    Dpcm,
    Dppx,
    Percent,
    None,
}

Units in css.

As defined in https://www.w3.org/TR/css3-values/

Variants

Methods

impl Unit
[src]

Some of these are exact and correct, others are more arbitrary. When comparing 10cm to 4in, these factors will give correct results. When comparing rems to vw, who can say?

Trait Implementations

impl Clone for Unit
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Unit
[src]

Formats the value using the given formatter.

impl PartialEq for Unit
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Unit
[src]

impl Display for Unit
[src]

Formats the value using the given formatter. Read more