pub trait ParseCss:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn parse_css(self: Vc<Self>) -> Vc<ParseCssResult>
where Self: Sized;
}
Required Methods§
Trait Implementations§
Source§impl VcValueTrait for Box<dyn ParseCss>
impl VcValueTrait for Box<dyn ParseCss>
type ValueTrait = dyn ParseCss
Source§fn get_trait_type_id() -> TraitTypeId
fn get_trait_type_id() -> TraitTypeId
Returns the type id of the trait object.
Source§fn get_impl_vtables() -> &'static VTableRegistry<Self::ValueTrait>
fn get_impl_vtables() -> &'static VTableRegistry<Self::ValueTrait>
Returns the vtable for an implementation of this trait.
Panics if ValueTypeId does not implement the trait.