pub trait ProcessCss:
ParseCss
+ Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required methods
fn get_css_with_placeholder(self: Vc<Self>) -> Vc<CssWithPlaceholderResult>
where Self: Sized;
fn finalize_css(
self: Vc<Self>,
chunking_context: Vc<Box<dyn ChunkingContext>>,
minify_type: MinifyType,
) -> Vc<FinalCssResult>
where Self: Sized;
}
Required Methods§
fn get_css_with_placeholder(self: Vc<Self>) -> Vc<CssWithPlaceholderResult>where
Self: Sized,
fn finalize_css(
self: Vc<Self>,
chunking_context: Vc<Box<dyn ChunkingContext>>,
minify_type: MinifyType,
) -> Vc<FinalCssResult>where
Self: Sized,
Trait Implementations§
Source§impl VcValueTrait for Box<dyn ProcessCss>
impl VcValueTrait for Box<dyn ProcessCss>
type ValueTrait = dyn ProcessCss
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.