Type Alias style::properties_and_values::rule::InitialValue

source ·
pub type InitialValue = Arc<SpecifiedValue>;
Expand description

Specifies the initial value of the custom property registration represented by the @property rule, controlling the property’s initial value.

The SpecifiedValue is wrapped in an Arc to avoid copying when using it.

Aliased Type§

struct InitialValue { /* private fields */ }

Trait Implementations§

source§

impl Parse for InitialValue

source§

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

Parse a value of this type. Read more