pub struct CopyFromFileSpec {
pub table: String,
pub columns: Option<Vec<String>>,
pub path: String,
pub options: CopyOptions,
}Expand description
v7.39 (round 249) — a parsed COPY <table> [(cols)] FROM '<path>'.
The engine is no_std: the HOST reads path and hands the bytes to
copy_buffer_inserts / Engine::copy_from_buffer.
Fields§
§table: String§columns: Option<Vec<String>>§path: String§options: CopyOptionsTrait Implementations§
Auto Trait Implementations§
impl Freeze for CopyFromFileSpec
impl RefUnwindSafe for CopyFromFileSpec
impl Send for CopyFromFileSpec
impl Sync for CopyFromFileSpec
impl Unpin for CopyFromFileSpec
impl UnsafeUnpin for CopyFromFileSpec
impl UnwindSafe for CopyFromFileSpec
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