pub struct SplitterConfig {
pub dialect: SqlDialect,
pub dry_run: bool,
pub table_filter: Option<AHashSet<String>>,
pub progress_fn: Option<Box<dyn Fn(u64)>>,
pub content_filter: ContentFilter,
}Fields§
§dialect: SqlDialect§dry_run: bool§table_filter: Option<AHashSet<String>>§progress_fn: Option<Box<dyn Fn(u64)>>§content_filter: ContentFilterTrait Implementations§
Source§impl Default for SplitterConfig
impl Default for SplitterConfig
Source§fn default() -> SplitterConfig
fn default() -> SplitterConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SplitterConfig
impl !RefUnwindSafe for SplitterConfig
impl !Send for SplitterConfig
impl !Sync for SplitterConfig
impl Unpin for SplitterConfig
impl !UnwindSafe for SplitterConfig
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> 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