pub struct ArrowIpcWriter { /* private fields */ }Expand description
Framing-layer Arrow IPC writer. Serialises message headers and bodies without depending on the full Arrow crate serialiser.
Implementations§
Source§impl ArrowIpcWriter
impl ArrowIpcWriter
Sourcepub fn write_message(&mut self, metadata: &[u8], body: &[u8])
pub fn write_message(&mut self, metadata: &[u8], body: &[u8])
Appends a framed IPC message (metadata + body) to the internal buffer.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArrowIpcWriter
impl RefUnwindSafe for ArrowIpcWriter
impl Send for ArrowIpcWriter
impl Sync for ArrowIpcWriter
impl Unpin for ArrowIpcWriter
impl UnsafeUnpin for ArrowIpcWriter
impl UnwindSafe for ArrowIpcWriter
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