Type Alias binder_ndk_sys::AParcel_boolArraySetter

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

This is called to set an underlying value in an arrayData object at index.

See also AParcel_readBoolArray

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

Aliased Type§

enum AParcel_boolArraySetter {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: usize, _: bool)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: usize, _: bool))

Some value of type T.