pub trait ICapeDiagnosticImpl: ICapeDiagnostic {
type T: ICapeInterfaceImpl + ICapeDiagnosticImpl;
const VTABLE: CAPEOPEN_1_2_ICapeDiagnostic_VTable = _;
// Required method
fn as_interface_pointer(&mut self) -> *mut ICapeInterface;
// Provided methods
fn init_interface() -> ICapeInterface { ... }
fn init<Timpl: ICapeDiagnosticImpl + ICapeInterfaceImpl>(u: &mut Timpl) { ... }
extern "C" fn raw_pop_up_message(
me: *mut c_void,
message: *mut ICapeString,
) -> CapeResult { ... }
extern "C" fn raw_log_message(
me: *mut c_void,
message: *mut ICapeString,
) -> CapeResult { ... }
}Provided Associated Constants§
const VTABLE: CAPEOPEN_1_2_ICapeDiagnostic_VTable = _
Required Associated Types§
Required Methods§
fn as_interface_pointer(&mut self) -> *mut ICapeInterface
Provided Methods§
Sourcefn init_interface() -> ICapeInterface
fn init_interface() -> ICapeInterface
prepare CAPEOPEN_1_2_ICapeDiagnostic interface and return as generic ICapeInterface pointer
fn init<Timpl: ICapeDiagnosticImpl + ICapeInterfaceImpl>(u: &mut Timpl)
extern "C" fn raw_pop_up_message( me: *mut c_void, message: *mut ICapeString, ) -> CapeResult
extern "C" fn raw_log_message( me: *mut c_void, message: *mut ICapeString, ) -> CapeResult
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.