pub struct FileMetadata {
pub schema: Schema,
pub ipc_schema: IpcSchema,
pub blocks: Vec<Block>,
pub size: u64,
/* private fields */
}
Expand description
Metadata of an Arrow IPC file, written in the footer of the file.
Fields§
§schema: Schema
The schema that is read from the file footer
ipc_schema: IpcSchema
The files’ IpcSchema
blocks: Vec<Block>
The blocks in the file
A block indicates the regions in the file to read to get data
size: u64
The total size of the file in bytes
Trait Implementations§
source§impl Clone for FileMetadata
impl Clone for FileMetadata
source§fn clone(&self) -> FileMetadata
fn clone(&self) -> FileMetadata
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for FileMetadata
impl RefUnwindSafe for FileMetadata
impl Send for FileMetadata
impl Sync for FileMetadata
impl Unpin for FileMetadata
impl UnwindSafe for FileMetadata
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