Trait AbstractRegistryAccess

Source
pub trait AbstractRegistryAccess: Sized {
    // Required method
    fn abstract_registry(
        &self,
        deps: Deps<'_>,
    ) -> AbstractSdkResult<RegistryContract>;
}
Expand description

Trait that enables access to a registry, like a registry contract.

Required Methods§

Source

fn abstract_registry( &self, deps: Deps<'_>, ) -> AbstractSdkResult<RegistryContract>

Get the address of the registry.

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§