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),
}