pub struct ArrowIPCMessage<B: StreamBuffer> {
pub message: B,
pub body: B,
}Expand description
Arrow IPC message component of a frame.
Wraps both the FlatBuffers-encoded Arrow message and its corresponding binary body payload.
Fields§
§message: BFlatBuffers-encoded Arrow message.
body: BColumnar data buffer payload.
Trait Implementations§
Auto Trait Implementations§
impl<B> Freeze for ArrowIPCMessage<B>where
B: Freeze,
impl<B> RefUnwindSafe for ArrowIPCMessage<B>where
B: RefUnwindSafe,
impl<B> Send for ArrowIPCMessage<B>where
B: Send,
impl<B> Sync for ArrowIPCMessage<B>where
B: Sync,
impl<B> Unpin for ArrowIPCMessage<B>where
B: Unpin,
impl<B> UnwindSafe for ArrowIPCMessage<B>where
B: UnwindSafe,
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