pub struct ArrayVector;Expand description
Helpers for working with ARRAY vectors (fixed-size arrays).
Implementations§
Source§impl ArrayVector
impl ArrayVector
Sourcepub unsafe fn get_child(vector: duckdb_vector) -> duckdb_vector
pub unsafe fn get_child(vector: duckdb_vector) -> duckdb_vector
Returns the child vector of an array vector.
§Safety
vectormust be a validDuckDBARRAY vector.- The returned handle is borrowed from
vectorand must not outlive it.
Auto Trait Implementations§
impl Freeze for ArrayVector
impl RefUnwindSafe for ArrayVector
impl Send for ArrayVector
impl Sync for ArrayVector
impl Unpin for ArrayVector
impl UnsafeUnpin for ArrayVector
impl UnwindSafe for ArrayVector
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