pub enum FileSplitting {
NoSplit,
SplitAfterRows(usize),
SplitAfterBytes(usize),
}Expand description
Defines how output files will be split
Variants§
NoSplit
Output files won’t be split
SplitAfterRows(usize)
Output files will be split after at least some number of rows are written
SplitAfterBytes(usize)
Output files will be split after at least some number of bytes are written
Trait Implementations§
Source§impl Clone for FileSplitting
impl Clone for FileSplitting
Source§fn clone(&self) -> FileSplitting
fn clone(&self) -> FileSplitting
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 FileSplitting
impl Debug for FileSplitting
impl Copy for FileSplitting
Auto Trait Implementations§
impl Freeze for FileSplitting
impl RefUnwindSafe for FileSplitting
impl Send for FileSplitting
impl Sync for FileSplitting
impl Unpin for FileSplitting
impl UnwindSafe for FileSplitting
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