Type Alias ComputedMozPrefFeatureValue

Source
pub type ComputedMozPrefFeatureValue = MozPrefFeatureValue<Integer>;
Expand description

The computed -moz-pref() value.

Aliased Type§

#[repr(u8)]
pub enum ComputedMozPrefFeatureValue { None, Boolean(BoolValue), Integer(i32), String(AtomString), }

Variants§

§

None

No pref value, implicitly bool, but also used to represent missing prefs.

§

Boolean(BoolValue)

A bool value.

§

Integer(i32)

An integer value, useful for int prefs.

§

String(AtomString)

A string pref value.