pub struct FileMetadata {
pub schema: Schema,
pub ipc_schema: IpcSchema,
pub blocks: Vec<Block>,
pub size: u64,
/* private fields */
}
Available on crate feature
io_ipc
only.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 more