pub trait Parse: Sized {
    // Required method
    fn parse<'i, 't>(
        parser: &mut Parser<'i, 't>
    ) -> Result<Self, PropertyParseError<'i>>;
}

Required Methods§

source

fn parse<'i, 't>( parser: &mut Parser<'i, 't> ) -> Result<Self, PropertyParseError<'i>>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Parse for Color

source§

fn parse<'i, 't>( parser: &mut Parser<'i, 't> ) -> Result<Self, PropertyParseError<'i>>

Implementors§