Function tari_wallet_ffi::pending_outbound_transactions_get_length[][src]

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

-------------------------------------------------------------------------------------------- /// ----------------------------------- OutboundTransactions ------------------------------------ /// Gets the length of a TariPendingOutboundTransactions

Arguments

transactions - The pointer to a TariPendingOutboundTransactions 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 TariPendingOutboundTransactions, note that it will be zero if transactions is null

Safety

None