Function rorm::rorm_row_get_str

source ·
#[no_mangle]
pub extern "C" fn rorm_row_get_str<'a, 'b>(
    row_ptr: &'a Row,
    index: FFIString<'_>,
    error_ptr: &'b mut Error<'_>
) -> FFIString<'a>
Expand description

Tries to retrieve an FFIString from the given row pointer.

Parameter:

  • row_ptr: Pointer to a row.
  • index: Name of the column to retrieve from the row.
  • error_ptr: Pointer to an Error. Gets only written to if an error occurs.

This function is called completely synchronously.