Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fixed unsound
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao committed Mar 4, 2022
1 parent a87c758 commit 5f8e17b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ffi/generated.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/// ABI-compatible struct for [`ArrowSchema`](https://arrow.apache.org/docs/format/CDataInterface.html#structure-definitions)
#[repr(C)]
#[derive(Debug, Clone)]
#[derive(Debug)]
pub struct ArrowSchema {
pub(super) format: *const ::std::os::raw::c_char,
pub(super) name: *const ::std::os::raw::c_char,
Expand All @@ -17,7 +17,7 @@ pub struct ArrowSchema {

/// ABI-compatible struct for [`ArrowArray`](https://arrow.apache.org/docs/format/CDataInterface.html#structure-definitions)
#[repr(C)]
#[derive(Debug, Clone)]
#[derive(Debug)]
pub struct ArrowArray {
pub(super) length: i64,
pub(super) null_count: i64,
Expand All @@ -33,7 +33,7 @@ pub struct ArrowArray {

/// ABI-compatible struct for [`ArrowArrayStream`](https://arrow.apache.org/docs/format/CStreamInterface.html).
#[repr(C)]
#[derive(Debug, Clone)]
#[derive(Debug)]
pub struct ArrowArrayStream {
pub(super) get_schema: ::std::option::Option<
unsafe extern "C" fn(
Expand Down

0 comments on commit 5f8e17b

Please sign in to comment.