pub struct IpcBuffer {
pub offset: i64,
pub length: i64,
}Expand description
Arrow IPC buffer descriptor (offset + length within the message body).
Fields§
§offset: i64Byte offset from the start of the message body.
length: i64Number of bytes in this buffer.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IpcBuffer
impl RefUnwindSafe for IpcBuffer
impl Send for IpcBuffer
impl Sync for IpcBuffer
impl Unpin for IpcBuffer
impl UnsafeUnpin for IpcBuffer
impl UnwindSafe for IpcBuffer
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