pub trait ParseCss:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn parse_css(self: Vc<Self>) -> Vc<ParseCssResult>
where Self: Sized;
}Required Methods§
fn parse_css(self: Vc<Self>) -> Vc<ParseCssResult>where
Self: Sized,
Trait Implementations§
impl Dynamic<Box<dyn ParseCss>> for Box<dyn ParseCss>
impl Dynamic<Box<dyn ParseCss>> for Box<dyn ProcessCss>
impl Dynamic<Box<dyn ValueDebug>> for Box<dyn ParseCss>
Available on debug-assertions enabled only.
impl Upcast<Box<dyn ParseCss>> for CssModule
impl Upcast<Box<dyn ParseCss>> for Box<dyn ParseCss>
impl Upcast<Box<dyn ParseCss>> for Box<dyn ProcessCss>
impl Upcast<Box<dyn ValueDebug>> for Box<dyn ParseCss>
Available on debug-assertions enabled only.
impl UpcastStrict<Box<dyn ParseCss>> for CssModule
impl UpcastStrict<Box<dyn ParseCss>> for Box<dyn ProcessCss>
impl UpcastStrict<Box<dyn ValueDebug>> for Box<dyn ParseCss>
Available on debug-assertions enabled only.
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 by [crate::value_type::register_all_trait_methods] Read more
type ValueTrait = dyn ParseCss
Source§fn get_trait_type_id() -> TraitTypeId
fn get_trait_type_id() -> TraitTypeId
Returns the type id of the trait object.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".