pub struct ExportedArrowArray { /* private fields */ }Expand description
Owned export that keeps ArrowArray alive until dropped or released.
Implementations§
Source§impl ExportedArrowArray
impl ExportedArrowArray
Sourcepub fn as_mut_ptr(&mut self) -> *mut ArrowArray
pub fn as_mut_ptr(&mut self) -> *mut ArrowArray
Returns a mutable raw pointer suitable for FFI handoff.
Sourcepub fn array(&self) -> &ArrowArray
pub fn array(&self) -> &ArrowArray
Borrows the array.
Trait Implementations§
Source§impl Drop for ExportedArrowArray
impl Drop for ExportedArrowArray
Auto Trait Implementations§
impl Freeze for ExportedArrowArray
impl RefUnwindSafe for ExportedArrowArray
impl !Send for ExportedArrowArray
impl !Sync for ExportedArrowArray
impl Unpin for ExportedArrowArray
impl UnsafeUnpin for ExportedArrowArray
impl UnwindSafe for ExportedArrowArray
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