pub trait ICapeCOSEUtilitiesImpl: ICapeCOSEUtilities {
type T: ICapeInterfaceImpl + ICapeCOSEUtilitiesImpl;
const VTABLE: CAPEOPEN_1_2_ICapeCOSEUtilities_VTable = _;
// Required method
fn as_interface_pointer(&mut self) -> *mut ICapeInterface;
// Provided methods
fn init_interface() -> ICapeInterface { ... }
fn init<Timpl: ICapeCOSEUtilitiesImpl + ICapeInterfaceImpl>(u: &mut Timpl) { ... }
extern "C" fn raw_get_named_value_list(
me: *mut c_void,
named_values: *mut ICapeArrayString,
) -> CapeResult { ... }
extern "C" fn raw_named_value(
me: *mut c_void,
name: *mut ICapeString,
named_value: *mut ICapeValue,
) -> CapeResult { ... }
}Provided Associated Constants§
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_ICapeCOSEUtilities interface and return as generic ICapeInterface pointer
fn init<Timpl: ICapeCOSEUtilitiesImpl + ICapeInterfaceImpl>(u: &mut Timpl)
extern "C" fn raw_get_named_value_list( me: *mut c_void, named_values: *mut ICapeArrayString, ) -> CapeResult
extern "C" fn raw_named_value( me: *mut c_void, name: *mut ICapeString, named_value: *mut ICapeValue, ) -> 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.