Trait ICapeArrayIntegerParameterImpl

Source
pub trait ICapeArrayIntegerParameterImpl: ICapeArrayIntegerParameter {
    type T: ICapeInterfaceImpl + ICapeArrayIntegerParameterImpl;

    const VTABLE: CAPEOPEN_1_2_ICapeArrayIntegerParameter_VTable = _;

    // Required method
    fn as_interface_pointer(&mut self) -> *mut ICapeInterface;

    // Provided methods
    fn init_interface() -> ICapeInterface { ... }
    fn init<Timpl: ICapeArrayIntegerParameterImpl + ICapeInterfaceImpl>(
        u: &mut Timpl,
    ) { ... }
    extern "C" fn raw_get_value(
        me: *mut c_void,
        value: *mut ICapeArrayInteger,
    ) -> CapeResult { ... }
    extern "C" fn raw_set_value(
        me: *mut c_void,
        value: *mut ICapeArrayInteger,
    ) -> CapeResult { ... }
    extern "C" fn raw_get_element_value(
        me: *mut c_void,
        position: *mut ICapeArrayInteger,
        value: *mut CapeInteger,
    ) -> CapeResult { ... }
    extern "C" fn raw_set_element_value(
        me: *mut c_void,
        position: *mut ICapeArrayInteger,
        value: CapeInteger,
    ) -> CapeResult { ... }
    extern "C" fn raw_get_default_value(
        me: *mut c_void,
        default_value: *mut CapeInteger,
    ) -> CapeResult { ... }
    extern "C" fn raw_get_lower_bound(
        me: *mut c_void,
        l_bound: *mut CapeInteger,
    ) -> CapeResult { ... }
    extern "C" fn raw_get_upper_bound(
        me: *mut c_void,
        u_bound: *mut CapeInteger,
    ) -> CapeResult { ... }
    extern "C" fn raw_validate_element(
        me: *mut c_void,
        position: *mut ICapeArrayInteger,
        value: CapeInteger,
        message: *mut ICapeString,
        is_ok: *mut CapeBoolean,
    ) -> CapeResult { ... }
    extern "C" fn raw_validate(
        me: *mut c_void,
        value: *mut ICapeArrayInteger,
        message: *mut ICapeString,
        is_ok: *mut CapeBoolean,
    ) -> CapeResult { ... }
}

Provided Associated Constants§

Required Associated Types§

Required Methods§

Provided Methods§

Source

fn init_interface() -> ICapeInterface

prepare CAPEOPEN_1_2_ICapeArrayIntegerParameter interface and return as generic ICapeInterface pointer

Source

fn init<Timpl: ICapeArrayIntegerParameterImpl + ICapeInterfaceImpl>( u: &mut Timpl, )

Source

extern "C" fn raw_get_value( me: *mut c_void, value: *mut ICapeArrayInteger, ) -> CapeResult

Source

extern "C" fn raw_set_value( me: *mut c_void, value: *mut ICapeArrayInteger, ) -> CapeResult

Source

extern "C" fn raw_get_element_value( me: *mut c_void, position: *mut ICapeArrayInteger, value: *mut CapeInteger, ) -> CapeResult

Source

extern "C" fn raw_set_element_value( me: *mut c_void, position: *mut ICapeArrayInteger, value: CapeInteger, ) -> CapeResult

Source

extern "C" fn raw_get_default_value( me: *mut c_void, default_value: *mut CapeInteger, ) -> CapeResult

Source

extern "C" fn raw_get_lower_bound( me: *mut c_void, l_bound: *mut CapeInteger, ) -> CapeResult

Source

extern "C" fn raw_get_upper_bound( me: *mut c_void, u_bound: *mut CapeInteger, ) -> CapeResult

Source

extern "C" fn raw_validate_element( me: *mut c_void, position: *mut ICapeArrayInteger, value: CapeInteger, message: *mut ICapeString, is_ok: *mut CapeBoolean, ) -> CapeResult

Source

extern "C" fn raw_validate( me: *mut c_void, value: *mut ICapeArrayInteger, message: *mut ICapeString, is_ok: *mut CapeBoolean, ) -> 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.

Implementors§