pub trait CallbackProxyObjBase {
type Api: VMApi;
// Required methods
fn new_cb_proxy_obj(api: Self::Api) -> Self;
fn cb_call_api(self) -> Self::Api;
}Required Associated Types§
Required Methods§
fn new_cb_proxy_obj(api: Self::Api) -> Self
fn cb_call_api(self) -> Self::Api
Object Safety§
This trait is not object safe.