pub trait ModuleChunkItemIdExt {
// Required method
fn chunk_item_id(
self: Vc<Self>,
chunking_context: Vc<Box<dyn ChunkingContext>>,
) -> Vc<ModuleId>;
}
Required Methods§
Sourcefn chunk_item_id(
self: Vc<Self>,
chunking_context: Vc<Box<dyn ChunkingContext>>,
) -> Vc<ModuleId>
fn chunk_item_id( self: Vc<Self>, chunking_context: Vc<Box<dyn ChunkingContext>>, ) -> Vc<ModuleId>
Returns the chunk item id of this module.
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.