pub struct ImportFileEntry {
pub address: String,
pub file_name: String,
pub public_key: Option<String>,
}Expand description
Entry describing a file for parallel import.
Each entry contains the address and file name needed to build the multi-FILE IMPORT SQL statement.
Fields§
§address: StringInternal address from EXA handshake (format: “host:port”)
file_name: StringFile name for this entry (e.g., “001.csv”, “002.csv”)
public_key: Option<String>Optional public key fingerprint for TLS
Implementations§
Trait Implementations§
Source§impl Clone for ImportFileEntry
impl Clone for ImportFileEntry
Source§fn clone(&self) -> ImportFileEntry
fn clone(&self) -> ImportFileEntry
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 moreAuto Trait Implementations§
impl Freeze for ImportFileEntry
impl RefUnwindSafe for ImportFileEntry
impl Send for ImportFileEntry
impl Sync for ImportFileEntry
impl Unpin for ImportFileEntry
impl UnsafeUnpin for ImportFileEntry
impl UnwindSafe for ImportFileEntry
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