pub trait CallbackProxy: CallbackProxyObjBase + Sized {
    // Provided methods
    fn default_issue_cb(
        self,
        initial_caller: ManagedAddress<Self::Api>,
        storage_key: ManagedBuffer<Self::Api>
    ) -> CallbackClosure<Self::Api> { ... }
    fn default_issue_init_supply_cb(
        self,
        initial_caller: ManagedAddress<Self::Api>,
        storage_key: ManagedBuffer<Self::Api>
    ) -> CallbackClosure<Self::Api> { ... }
}

Provided Methods§

source

fn default_issue_cb( self, initial_caller: ManagedAddress<Self::Api>, storage_key: ManagedBuffer<Self::Api> ) -> CallbackClosure<Self::Api>

source

fn default_issue_init_supply_cb( self, initial_caller: ManagedAddress<Self::Api>, storage_key: ManagedBuffer<Self::Api> ) -> CallbackClosure<Self::Api>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<A> CallbackProxy for CallbackProxyObj<A>
where A: VMApi + 'static,