Function tari_wallet_ffi::pending_inbound_transactions_get_length[][src]

#[no_mangle]pub unsafe extern "C" fn pending_inbound_transactions_get_length(
    transactions: *mut TariPendingInboundTransactions,
    error_out: *mut c_int
) -> c_uint

-------------------------------------------------------------------------------------------- /// ----------------------------------- InboundTransactions ------------------------------------- /// Gets the length of a TariPendingInboundTransactions

Arguments

transactions - The pointer to a TariPendingInboundTransactions error_out - Pointer to an int which will be modified to an error code should one occur, may not be null. Functions as an out parameter.

Returns

c_uint - Returns the number of elements in a TariPendingInboundTransactions, note that it will be zero if transactions is null

Safety

None