Trait abstract_app::traits::AbstractRegistryAccess
source · pub trait AbstractRegistryAccess: Sized {
// Required method
fn abstract_registry(
&self,
deps: Deps<'_>
) -> Result<VersionControlContract, AbstractSdkError>;
}Expand description
Trait that enables access to a registry, like a version control contract.
Required Methods§
sourcefn abstract_registry(
&self,
deps: Deps<'_>
) -> Result<VersionControlContract, AbstractSdkError>
fn abstract_registry( &self, deps: Deps<'_> ) -> Result<VersionControlContract, AbstractSdkError>
Get the address of the registry.
Object Safety§
This trait is not object safe.