Type Alias style::values::specified::ratio::Ratio

source ·
pub type Ratio = Ratio<NonNegativeNumber>;
Expand description

A specified value.

Aliased Type§

struct Ratio(pub NonNegative<Number>, pub NonNegative<Number>);

Fields§

§0: NonNegative<Number>§1: NonNegative<Number>

Trait Implementations§

source§

impl Parse for Ratio

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't> ) -> Result<Self, ParseError<'i>>

Parse a value of this type. Read more