Struct datafusion::row::writer::RowWriter
source · pub struct RowWriter { /* private fields */ }
Expand description
Reusable row writer backed by Vec<u8>
┌ ─ ─ ─ ─ ─ ─ ─ ─
RowWriter │
┌───────────────────────┐ │ [RowFormat]
│ │ │
│ │ │(copy from Array
│ │ to [u8]) │ ┌───────────────────────┐
│ RecordBatch │ └ ─ ─ ─ ─ ─ ─ ─ ─ │ RowFormat │
│ │──────────────────────────────▶│ Vec<u8> │
│ (... N Rows ...) │ │ │
│ │ └───────────────────────┘
│ │
│ │
└───────────────────────┘
Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for RowWriter
impl Send for RowWriter
impl Sync for RowWriter
impl Unpin for RowWriter
impl UnwindSafe for RowWriter
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