Trait ChunkItemExt

Source
pub trait ChunkItemExt {
    // Required method
    fn id(self: Vc<Self>) -> Vc<ModuleId>;
}

Required Methods§

Source

fn id(self: Vc<Self>) -> Vc<ModuleId>

Returns the module id of this chunk item.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> ChunkItemExt for T
where T: Upcast<Box<dyn ChunkItem>>,