#[no_mangle]
pub extern "C" fn rorm_row_get_null_binary<'a>(
    row_ptr: &'a Row,
    index: FFIString<'a>,
    error_ptr: &mut Error<'_>
) -> FFIOption<FFISlice<'a, u8>>
Expand description

Tries to retrieve a nullable FFISlice of a u8 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.