pub struct ListVector { /* private fields */ }Expand description
A list vector.
Implementations§
Source§impl ListVector
impl ListVector
Sourcepub fn child(&self, capacity: usize) -> FlatVector
pub fn child(&self, capacity: usize) -> FlatVector
Returns the child vector.
Sourcepub fn struct_child(&self, capacity: usize) -> StructVector
pub fn struct_child(&self, capacity: usize) -> StructVector
Take the child as StructVector.
Sourcepub fn array_child(&self) -> ArrayVector
pub fn array_child(&self) -> ArrayVector
Take the child as ArrayVector.
Sourcepub fn list_child(&self) -> ListVector
pub fn list_child(&self) -> ListVector
Take the child as ListVector.
Trait Implementations§
Source§impl From<*mut _duckdb_vector> for ListVector
impl From<*mut _duckdb_vector> for ListVector
Source§fn from(ptr: duckdb_vector) -> Self
fn from(ptr: duckdb_vector) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ListVector
impl RefUnwindSafe for ListVector
impl !Send for ListVector
impl !Sync for ListVector
impl Unpin for ListVector
impl UnwindSafe for ListVector
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