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§
#[repr(C)]pub struct InitialValue { /* private fields */ }
Trait Implementations§
Source§impl Parse for InitialValue
impl Parse for InitialValue
Source§fn parse<'i, 't>(
context: &ParserContext<'_>,
input: &mut Parser<'i, 't>,
) -> Result<Self, ParseError<'i>>
fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<Self, ParseError<'i>>
Parse a value of this type. Read more