pub struct ImportDatabase {
pub file_path: String,
pub options: HashMap<String, String>,
}Expand description
IMPORT DATABASE statement.
Fields§
§file_path: StringPath to the import directory (previously exported).
options: HashMap<String, String>Import options (format, etc.) — accepted for Kuzu syntax parity.
Trait Implementations§
Source§impl Clone for ImportDatabase
impl Clone for ImportDatabase
Source§fn clone(&self) -> ImportDatabase
fn clone(&self) -> ImportDatabase
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 ImportDatabase
impl Debug for ImportDatabase
Source§impl PartialEq for ImportDatabase
impl PartialEq for ImportDatabase
impl StructuralPartialEq for ImportDatabase
Auto Trait Implementations§
impl Freeze for ImportDatabase
impl RefUnwindSafe for ImportDatabase
impl Send for ImportDatabase
impl Sync for ImportDatabase
impl Unpin for ImportDatabase
impl UnsafeUnpin for ImportDatabase
impl UnwindSafe for ImportDatabase
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