#[non_exhaustive]pub struct IncrementalLoadMode {
pub column: String,
/* private fields */
}Expand description
Load definition for incremental load modes
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.column: StringColumn name for incremental load modes
Implementations§
Trait Implementations§
Source§impl Clone for IncrementalLoadMode
impl Clone for IncrementalLoadMode
Source§fn clone(&self) -> IncrementalLoadMode
fn clone(&self) -> IncrementalLoadMode
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 IncrementalLoadMode
impl Debug for IncrementalLoadMode
Source§impl Default for IncrementalLoadMode
impl Default for IncrementalLoadMode
Source§fn default() -> IncrementalLoadMode
fn default() -> IncrementalLoadMode
Returns the “default value” for a type. Read more
Source§impl Message for IncrementalLoadMode
impl Message for IncrementalLoadMode
Source§impl PartialEq for IncrementalLoadMode
impl PartialEq for IncrementalLoadMode
impl StructuralPartialEq for IncrementalLoadMode
Auto Trait Implementations§
impl Freeze for IncrementalLoadMode
impl RefUnwindSafe for IncrementalLoadMode
impl Send for IncrementalLoadMode
impl Sync for IncrementalLoadMode
impl Unpin for IncrementalLoadMode
impl UnwindSafe for IncrementalLoadMode
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