1use crate::api::VMApi; 2 3pub trait CallbackProxyObjBase { 4 type Api: VMApi; 5 6 fn new_cb_proxy_obj() -> Self; 7}