multiversx_sc_modules::users

Trait EndpointWrappers

Source
pub trait EndpointWrappers: ContractBase + UsersModule {
    // Provided methods
    fn call_get_user_id(&self) { ... }
    fn call_get_user_address(&self) { ... }
    fn call_get_num_users(&self) { ... }
    fn call_update_user_address(&self) { ... }
    fn call(&self, fn_name: &str) -> bool { ... }
    fn callback_selector(
        &self,
        ___cb_closure___: CallbackClosureForDeser<Self::Api>,
    ) -> CallbackSelectorResult<Self::Api> { ... }
    fn callback(&self) { ... }
}

Provided Methods§

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.

Implementations on Foreign Types§

Source§

impl<A> EndpointWrappers for UniversalContractObj<A>
where A: VMApi,

Implementors§