pub struct FileInfo {
pub partition: Vec<u8>,
pub bucket: i32,
pub bucket_path: String,
pub snapshot_id: i64,
pub total_buckets: i32,
pub file_meta: DataFileMeta,
}Expand description
Metadata for a single data file in the target table.
Fields§
§partition: Vec<u8>§bucket: i32§bucket_path: String§snapshot_id: i64§total_buckets: i32§file_meta: DataFileMetaAuto Trait Implementations§
impl Freeze for FileInfo
impl RefUnwindSafe for FileInfo
impl Send for FileInfo
impl Sync for FileInfo
impl Unpin for FileInfo
impl UnsafeUnpin for FileInfo
impl UnwindSafe for FileInfo
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