#[non_exhaustive]pub enum BatchConfig {
PysparkBatch(Box<PySparkBatch>),
SparkBatch(Box<SparkBatch>),
SparkRBatch(Box<SparkRBatch>),
SparkSqlBatch(Box<SparkSqlBatch>),
}Expand description
The application/framework-specific portion of the batch configuration.
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.
PysparkBatch(Box<PySparkBatch>)
Optional. PySpark batch config.
SparkBatch(Box<SparkBatch>)
Optional. Spark batch config.
SparkRBatch(Box<SparkRBatch>)
Optional. SparkR batch config.
SparkSqlBatch(Box<SparkSqlBatch>)
Optional. SparkSql batch config.
Trait Implementations§
Source§impl Clone for BatchConfig
impl Clone for BatchConfig
Source§fn clone(&self) -> BatchConfig
fn clone(&self) -> BatchConfig
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 BatchConfig
impl Debug for BatchConfig
Source§impl PartialEq for BatchConfig
impl PartialEq for BatchConfig
impl StructuralPartialEq for BatchConfig
Auto Trait Implementations§
impl Freeze for BatchConfig
impl RefUnwindSafe for BatchConfig
impl Send for BatchConfig
impl Sync for BatchConfig
impl Unpin for BatchConfig
impl UnwindSafe for BatchConfig
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