pub struct ManifestFileEntry {Show 13 fields
pub manifest_path: String,
pub manifest_length: i64,
pub partition_spec_id: i32,
pub content: ManifestContent,
pub sequence_number: i64,
pub min_sequence_number: i64,
pub added_snapshot_id: i64,
pub added_files_count: i64,
pub existing_files_count: i64,
pub deleted_files_count: i64,
pub added_rows_count: i64,
pub existing_rows_count: i64,
pub deleted_rows_count: i64,
}Expand description
An entry in a manifest list, referencing a single manifest file.
Fields§
§manifest_path: StringPath to the manifest file.
manifest_length: i64Length of the manifest file in bytes.
partition_spec_id: i32The partition spec ID used to write the manifest.
content: ManifestContentThe content type of files in this manifest.
sequence_number: i64Sequence number when this manifest was added.
min_sequence_number: i64Minimum sequence number of any file in this manifest.
added_snapshot_id: i64The snapshot ID that added this manifest.
added_files_count: i64Number of files added in this manifest.
existing_files_count: i64Number of existing (unchanged) files in this manifest.
deleted_files_count: i64Number of files deleted in this manifest.
added_rows_count: i64Number of rows added across all files in this manifest.
existing_rows_count: i64Number of existing rows in this manifest.
deleted_rows_count: i64Number of rows deleted in this manifest.
Trait Implementations§
Source§impl Clone for ManifestFileEntry
impl Clone for ManifestFileEntry
Source§fn clone(&self) -> ManifestFileEntry
fn clone(&self) -> ManifestFileEntry
Returns a duplicate 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 moreSource§impl Debug for ManifestFileEntry
impl Debug for ManifestFileEntry
Source§impl<'de> Deserialize<'de> for ManifestFileEntry
impl<'de> Deserialize<'de> for ManifestFileEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ManifestFileEntry
impl RefUnwindSafe for ManifestFileEntry
impl Send for ManifestFileEntry
impl Sync for ManifestFileEntry
impl Unpin for ManifestFileEntry
impl UnwindSafe for ManifestFileEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more