Struct iceberg_rust_spec::spec::manifest::ManifestEntryBuilder
source · 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: Option<i64>) -> &mut Self
pub fn with_snapshot_id(&mut self, value: Option<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: Option<i64>) -> &mut Self
pub fn with_sequence_number(&mut self, value: Option<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 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 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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