Enum datafusion::datasource::file_format::FileWriterMode
source · pub enum FileWriterMode {
Append,
Put,
PutMultipart,
}
Expand description
An enum that defines different file writer modes.
Variants§
Append
Data is appended to an existing file.
Put
Data is written to a new file.
PutMultipart
Data is written to a new file in multiple parts.
Trait Implementations§
source§impl Clone for FileWriterMode
impl Clone for FileWriterMode
source§fn clone(&self) -> FileWriterMode
fn clone(&self) -> FileWriterMode
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 FileWriterMode
impl Debug for FileWriterMode
impl Copy for FileWriterMode
Auto Trait Implementations§
impl RefUnwindSafe for FileWriterMode
impl Send for FileWriterMode
impl Sync for FileWriterMode
impl Unpin for FileWriterMode
impl UnwindSafe for FileWriterMode
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