pub struct ChunkedDataResult {
pub data_bytes: Vec<u8>,
pub layout_message: Vec<u8>,
pub pipeline_message: Option<Vec<u8>>,
}Expand description
Result of building a chunked dataset.
Fields§
§data_bytes: Vec<u8>Raw bytes containing all chunk data + index structures.
layout_message: Vec<u8>The DataLayout v4 message bytes.
pipeline_message: Option<Vec<u8>>The FilterPipeline message bytes, if any.
Auto Trait Implementations§
impl Freeze for ChunkedDataResult
impl RefUnwindSafe for ChunkedDataResult
impl Send for ChunkedDataResult
impl Sync for ChunkedDataResult
impl Unpin for ChunkedDataResult
impl UnsafeUnpin for ChunkedDataResult
impl UnwindSafe for ChunkedDataResult
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