pub trait ModuleChunkItemIdExt {
// Required method
fn chunk_item_id(
self: Vc<Self>,
chunking_context: Vc<Box<dyn ChunkingContext>>,
) -> impl Future<Output = Result<ModuleId>> + Send;
}Required Methods§
Sourcefn chunk_item_id(
self: Vc<Self>,
chunking_context: Vc<Box<dyn ChunkingContext>>,
) -> impl Future<Output = Result<ModuleId>> + Send
fn chunk_item_id( self: Vc<Self>, chunking_context: Vc<Box<dyn ChunkingContext>>, ) -> impl Future<Output = Result<ModuleId>> + Send
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".