Type Alias binder_ndk_sys::AParcel_boolArrayGetter

source ·
pub type AParcel_boolArrayGetter = Option<unsafe extern "C" fn(arrayData: *const c_void, index: usize) -> bool>;
Expand description

This is called to get the underlying data from an arrayData object at index.

See also AParcel_writeBoolArray

\param arrayData some external representation of an array of bool. \param index the index of the value to be retrieved.

\return the value of the array at index index.

Aliased Type§

enum AParcel_boolArrayGetter {
    None,
    Some(unsafe extern "C" fn(_: *const c_void, _: usize) -> bool),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const c_void, _: usize) -> bool)

Some value of type T.