#[non_exhaustive]pub struct IncrementalRunConfig {
pub incremental_run_type: Option<IncrementalRunType>,
}
Expand description
An object which defines an incremental run type and has only incrementalRunType
as a field.
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.incremental_run_type: Option<IncrementalRunType>
The type of incremental run. It takes only one value: IMMEDIATE
.
Implementations§
source§impl IncrementalRunConfig
impl IncrementalRunConfig
sourcepub fn incremental_run_type(&self) -> Option<&IncrementalRunType>
pub fn incremental_run_type(&self) -> Option<&IncrementalRunType>
The type of incremental run. It takes only one value: IMMEDIATE
.
source§impl IncrementalRunConfig
impl IncrementalRunConfig
sourcepub fn builder() -> IncrementalRunConfigBuilder
pub fn builder() -> IncrementalRunConfigBuilder
Creates a new builder-style object to manufacture IncrementalRunConfig
.
Trait Implementations§
source§impl Clone for IncrementalRunConfig
impl Clone for IncrementalRunConfig
source§fn clone(&self) -> IncrementalRunConfig
fn clone(&self) -> IncrementalRunConfig
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 moresource§impl Debug for IncrementalRunConfig
impl Debug for IncrementalRunConfig
source§impl PartialEq for IncrementalRunConfig
impl PartialEq for IncrementalRunConfig
source§fn eq(&self, other: &IncrementalRunConfig) -> bool
fn eq(&self, other: &IncrementalRunConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IncrementalRunConfig
Auto Trait Implementations§
impl RefUnwindSafe for IncrementalRunConfig
impl Send for IncrementalRunConfig
impl Sync for IncrementalRunConfig
impl Unpin for IncrementalRunConfig
impl UnwindSafe for IncrementalRunConfig
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> 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>
Creates a shared type from an unshared type.