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>
Source§const IMPL_VTABLES: &'static VTableRegistry<Self::ValueTrait>
const IMPL_VTABLES: &'static VTableRegistry<Self::ValueTrait>
The per-trait vtable registry, populated at program load by
#[ctor::ctor]
functions emitted by each #[turbo_tasks::value_impl] expansion. Read moretype ValueTrait = dyn ParseCss
Source§fn get_trait_type_id() -> TraitTypeId
fn get_trait_type_id() -> TraitTypeId
Returns the type id of the trait object.
impl Dynamic<Box<dyn ParseCss>> for Box<dyn ParseCss>
impl Dynamic<Box<dyn ValueDebug>> for Box<dyn ParseCss>
Available on debug-assertions enabled only.
impl Upcast<Box<dyn ParseCss>> for Box<dyn ParseCss>
impl Upcast<Box<dyn ValueDebug>> for Box<dyn ParseCss>
Available on debug-assertions enabled only.
impl UpcastStrict<Box<dyn ValueDebug>> for Box<dyn ParseCss>
Available on debug-assertions enabled only.