#[repr(C)]
pub struct FFI_ArrowArrayStream { pub get_schema: Option<unsafe extern "C" fn(arg1: *mut FFI_ArrowArrayStream, out: *mut FFI_ArrowSchema) -> c_int>, pub get_next: Option<unsafe extern "C" fn(arg1: *mut FFI_ArrowArrayStream, out: *mut FFI_ArrowArray) -> c_int>, pub get_last_error: Option<unsafe extern "C" fn(arg1: *mut FFI_ArrowArrayStream) -> *const c_char>, pub release: Option<unsafe extern "C" fn(arg1: *mut FFI_ArrowArrayStream)>, pub private_data: *mut c_void, }
Expand description

ABI-compatible struct for ArrayStream from C Stream Interface See https://arrow.apache.org/docs/format/CStreamInterface.html#structure-definitions This was created by bindgen

Fields

get_schema: Option<unsafe extern "C" fn(arg1: *mut FFI_ArrowArrayStream, out: *mut FFI_ArrowSchema) -> c_int>get_next: Option<unsafe extern "C" fn(arg1: *mut FFI_ArrowArrayStream, out: *mut FFI_ArrowArray) -> c_int>get_last_error: Option<unsafe extern "C" fn(arg1: *mut FFI_ArrowArrayStream) -> *const c_char>release: Option<unsafe extern "C" fn(arg1: *mut FFI_ArrowArrayStream)>private_data: *mut c_void

Implementations

Creates a new FFI_ArrowArrayStream.

Creates a new empty FFI_ArrowArrayStream. Used to import from the C Stream Interface.

Trait Implementations

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.