Type Alias binder_ndk_sys::AParcel_readParcelableElement

source ·
pub type AParcel_readParcelableElement = Option<unsafe extern "C" fn(parcel: *const AParcel, arrayData: *mut c_void, index: usize) -> binder_status_t>;
Expand description

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

See also AParcel_readParcelableArray

\param parcel parcel to read the parcelable from \param arrayData some external representation of an array of parcelables (a user-defined type). \param index the index of the value to be set.

\return status (usually returned from other parceling functions). STATUS_OK for success.

Aliased Type§

enum AParcel_readParcelableElement {
    None,
    Some(unsafe extern "C" fn(_: *const AParcel, _: *mut c_void, _: usize) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.