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 TraitVtablePrototype for Box<dyn ProcessCss>
impl TraitVtablePrototype for Box<dyn ProcessCss>
Source§impl VcValueTrait for Box<dyn ProcessCss>
impl VcValueTrait for Box<dyn ProcessCss>
Source§const IMPL_VTABLES: &'static VTableRegistry<Self::ValueTrait>
const IMPL_VTABLES: &'static VTableRegistry<Self::ValueTrait>
The per-trait vtable registry, populated by [crate::value_type::register_all_trait_methods] Read more
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.
impl Dynamic<Box<dyn ParseCss>> for Box<dyn ProcessCss>
impl Dynamic<Box<dyn ProcessCss>> for Box<dyn ProcessCss>
impl Dynamic<Box<dyn ValueDebug>> for Box<dyn ProcessCss>
Available on debug-assertions enabled only.
impl Upcast<Box<dyn ParseCss>> for Box<dyn ProcessCss>
impl Upcast<Box<dyn ProcessCss>> for Box<dyn ProcessCss>
impl Upcast<Box<dyn ValueDebug>> for Box<dyn ProcessCss>
Available on debug-assertions enabled only.
impl UpcastStrict<Box<dyn ParseCss>> for Box<dyn ProcessCss>
impl UpcastStrict<Box<dyn ValueDebug>> for Box<dyn ProcessCss>
Available on debug-assertions enabled only.