pub struct ManifestEntryBuilder { /* private fields */ }
Expand description
Builder for ManifestEntry
.
Implementations§
Source§impl ManifestEntryBuilder
impl ManifestEntryBuilder
Sourcepub fn with_format_version(&mut self, value: FormatVersion) -> &mut Self
pub fn with_format_version(&mut self, value: FormatVersion) -> &mut Self
Table format version
Sourcepub fn with_status(&mut self, value: Status) -> &mut Self
pub fn with_status(&mut self, value: Status) -> &mut Self
Used to track additions and deletions
Sourcepub fn with_snapshot_id(&mut self, value: i64) -> &mut Self
pub fn with_snapshot_id(&mut self, value: i64) -> &mut Self
Snapshot id where the file was added, or deleted if status is 2. Inherited when null.
Sourcepub fn with_sequence_number(&mut self, value: i64) -> &mut Self
pub fn with_sequence_number(&mut self, value: i64) -> &mut Self
Sequence number when the file was added. Inherited when null.
Sourcepub fn with_data_file(&mut self, value: DataFile) -> &mut Self
pub fn with_data_file(&mut self, value: DataFile) -> &mut Self
File path, partition tuple, metrics, …
Sourcepub fn build(&self) -> Result<ManifestEntry, ManifestEntryBuilderError>
pub fn build(&self) -> Result<ManifestEntry, ManifestEntryBuilderError>
Trait Implementations§
Source§impl Clone for ManifestEntryBuilder
impl Clone for ManifestEntryBuilder
Source§fn clone(&self) -> ManifestEntryBuilder
fn clone(&self) -> ManifestEntryBuilder
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 moreAuto Trait Implementations§
impl Freeze for ManifestEntryBuilder
impl RefUnwindSafe for ManifestEntryBuilder
impl Send for ManifestEntryBuilder
impl Sync for ManifestEntryBuilder
impl Unpin for ManifestEntryBuilder
impl UnwindSafe for ManifestEntryBuilder
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> 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