Skip to main content

InternalModuleService

Trait InternalModuleService 

Source
pub trait InternalModuleService<I>
where I: Iterator<Item = Result<Bytes, Error>>,
{ // Required method fn batch_get_unresolved_module_definition( &self, auth_: &BearerToken, request: &BatchGetUnresolvedModuleDefinitionsRequest, ) -> Result<BatchGetUnresolvedModuleDefinitionsResponse, Error>; }
Expand description

This service provides internal APIs related to modules.

Required Methods§

Source

fn batch_get_unresolved_module_definition( &self, auth_: &BearerToken, request: &BatchGetUnresolvedModuleDefinitionsRequest, ) -> Result<BatchGetUnresolvedModuleDefinitionsResponse, Error>

Returns the module definition for the given module reference.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<I, __C> InternalModuleService<I> for InternalModuleServiceClient<__C>
where I: Iterator<Item = Result<Bytes, Error>>, __C: Client<ResponseBody = I>,