#[repr(C)]pub struct ArrowSchema {
pub format: *const c_char,
pub name: *const c_char,
pub metadata: *const c_char,
pub flags: i64,
pub n_children: i64,
pub children: *mut *mut ArrowSchema,
pub dictionary: *mut ArrowSchema,
pub release: Option<unsafe extern "C" fn(*mut ArrowSchema)>,
pub private_data: *mut c_void,
}Expand description
Arrow C Data Interface schema.
Fields§
§format: *const c_char§name: *const c_char§metadata: *const c_char§flags: i64§n_children: i64§children: *mut *mut ArrowSchema§dictionary: *mut ArrowSchema§release: Option<unsafe extern "C" fn(*mut ArrowSchema)>§private_data: *mut c_voidImplementations§
Source§impl ArrowSchema
impl ArrowSchema
Trait Implementations§
Auto Trait Implementations§
impl !Send for ArrowSchema
impl !Sync for ArrowSchema
impl Freeze for ArrowSchema
impl RefUnwindSafe for ArrowSchema
impl Unpin for ArrowSchema
impl UnsafeUnpin for ArrowSchema
impl UnwindSafe for ArrowSchema
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more