pub enum WriteBackend {
Auto,
BaselineTokenRow,
DirectFramedBulk,
DirectRawBulk,
}Expand description
Write backend selection.
Variants§
Auto
Select the best available backend for the current crate build and plan.
BaselineTokenRow
Use Tiberius’ row-oriented TokenRow bulk-load path.
DirectFramedBulk
Use direct bulk-row payload encoding through Tiberius’ framed sink.
DirectRawBulk
Use the raw bulk-row payload path exposed by the Tiberius fork.
Trait Implementations§
Source§impl Clone for WriteBackend
impl Clone for WriteBackend
Source§fn clone(&self) -> WriteBackend
fn clone(&self) -> WriteBackend
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WriteBackend
impl Debug for WriteBackend
Source§impl Default for WriteBackend
impl Default for WriteBackend
Source§fn default() -> WriteBackend
fn default() -> WriteBackend
Returns the “default value” for a type. Read more
Source§impl Hash for WriteBackend
impl Hash for WriteBackend
Source§impl PartialEq for WriteBackend
impl PartialEq for WriteBackend
Source§fn eq(&self, other: &WriteBackend) -> bool
fn eq(&self, other: &WriteBackend) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WriteBackend
impl Eq for WriteBackend
impl StructuralPartialEq for WriteBackend
Auto Trait Implementations§
impl Freeze for WriteBackend
impl RefUnwindSafe for WriteBackend
impl Send for WriteBackend
impl Sync for WriteBackend
impl Unpin for WriteBackend
impl UnsafeUnpin for WriteBackend
impl UnwindSafe for WriteBackend
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