pub trait ProcessOpaqueObj<'cglue_a>: 'cglue_a + GetContainer + GetVtbl<ProcessVtbl<'cglue_a, <Self as GetContainer>::ContType>> + Send {
    type ProcessVtbl: CGlueVtblCont<ContType = <Self as GetContainer>::ContType> + StableAbi;
}

Required Associated Types§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'cglue_a, CGlueO: 'cglue_a + GetContainer + GetVtbl<ProcessVtbl<'cglue_a, <Self as GetContainer>::ContType>> + Send> ProcessOpaqueObj<'cglue_a> for CGlueO
where <CGlueO as GetContainer>::ContType: StableAbi,

§

type ProcessVtbl = ProcessVtbl<'cglue_a, <CGlueO as GetContainer>::ContType>