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;
}