#[non_exhaustive]pub enum Incremental {
Field(String),
}Expand description
Spec related to incremental scan of the data
When an option is selected for incremental scan, it cannot be unset or changed. If not specified, a data scan will run for all data in the table.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Field(String)
Immutable. The unnested field (of type Date or Timestamp) that contains values which monotonically increase over time.
If not specified, a data scan will run for all data in the table.
Trait Implementations§
Source§impl Clone for Incremental
impl Clone for Incremental
Source§fn clone(&self) -> Incremental
fn clone(&self) -> Incremental
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 Incremental
impl Debug for Incremental
Source§impl PartialEq for Incremental
impl PartialEq for Incremental
impl StructuralPartialEq for Incremental
Auto Trait Implementations§
impl Freeze for Incremental
impl RefUnwindSafe for Incremental
impl Send for Incremental
impl Sync for Incremental
impl Unpin for Incremental
impl UnsafeUnpin for Incremental
impl UnwindSafe for Incremental
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