Trait CssChunkItem

Source
pub trait CssChunkItem:
    ChunkItem
    + Send
    + Sync
    + NonLocalValue
    + ValueDebug {
    // Required method
    fn content(self: Vc<Self>) -> Vc<CssChunkItemContent>
       where Self: Sized;
}

Required Methods§

Source

fn content(self: Vc<Self>) -> Vc<CssChunkItemContent>
where Self: Sized,

Trait Implementations§

Source§

impl VcValueTrait for Box<dyn CssChunkItem>

Source§

type ValueTrait = dyn CssChunkItem

Source§

fn get_trait_type_id() -> TraitTypeId

Returns the type id of the trait object.
Source§

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

impl Dynamic<Box<dyn ChunkItem>> for Box<dyn CssChunkItem>

Source§

impl Dynamic<Box<dyn CssChunkItem>> for Box<dyn CssChunkItem>

Source§

impl Dynamic<Box<dyn ValueDebug>> for Box<dyn CssChunkItem>

Source§

impl Upcast<Box<dyn ChunkItem>> for Box<dyn CssChunkItem>

Source§

impl Upcast<Box<dyn CssChunkItem>> for Box<dyn CssChunkItem>

Source§

impl Upcast<Box<dyn ValueDebug>> for Box<dyn CssChunkItem>

Implementors§

Source§

impl<T> CssChunkItem for T
where T: Dynamic<Box<dyn CssChunkItem>> + ChunkItem + Send + Sync + NonLocalValue + ValueDebug,