Trait ProcessCss

Source
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§

Source

fn get_css_with_placeholder(self: Vc<Self>) -> Vc<CssWithPlaceholderResult>
where Self: Sized,

Source

fn finalize_css( self: Vc<Self>, chunking_context: Vc<Box<dyn ChunkingContext>>, minify_type: MinifyType, ) -> Vc<FinalCssResult>
where Self: Sized,

Trait Implementations§

Implementors§