#[repr(C)]pub struct ArrowData {
pub schema: ArrowSchema,
pub array: ArrowArray,
}Expand description
An Arrow array paired with its schema (C Data Interface).
Note: This is a convenience type rather than passing (ArrowArray, ArrowSchema).
Fields§
§schema: ArrowSchema§array: ArrowArrayAuto Trait Implementations§
impl Freeze for ArrowData
impl RefUnwindSafe for ArrowData
impl Send for ArrowData
impl !Sync for ArrowData
impl Unpin for ArrowData
impl UnsafeUnpin for ArrowData
impl UnwindSafe for ArrowData
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