pub struct Table { /* private fields */ }Implementations
sourceimpl Table
impl Table
pub fn with_capacity(schema: &[Kind], cap: usize) -> Self
pub fn check_consistent(&self) -> Result<()>
pub fn mem_estimate(&self) -> usize
pub fn get(&mut self, item: usize) -> &mut VarArray
pub fn get_many(&mut self, items: &[usize]) -> Vec<&mut VarArray>
pub fn finish_bulk_push(&mut self) -> Result<()>
pub fn rows(&self) -> usize
pub fn push_null(&mut self, i: usize) -> Result<()>
pub fn push_str(&mut self, i: usize, val: Option<&str>) -> Result<()>
pub fn push_bool(&mut self, i: usize, val: Option<bool>) -> Result<()>
pub fn push_fsb(
&mut self,
i: usize,
val: Option<impl AsRef<[u8]>>
) -> Result<()>
pub fn push_primitive<T: NativeType>(
&mut self,
i: usize,
val: Option<T>
) -> Result<()>
pub fn take_batch(&mut self) -> Vec<Arc<dyn Array>>
Auto Trait Implementations
impl !RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl !UnwindSafe for Table
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more