pub struct ExportDatabase {
pub file_path: String,
pub options: HashMap<String, String>,
}Expand description
EXPORT DATABASE statement.
Fields§
§file_path: StringPath to the export directory.
options: HashMap<String, String>Export options (format, schema_only, etc.).
Trait Implementations§
Source§impl Clone for ExportDatabase
impl Clone for ExportDatabase
Source§fn clone(&self) -> ExportDatabase
fn clone(&self) -> ExportDatabase
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 ExportDatabase
impl Debug for ExportDatabase
Source§impl PartialEq for ExportDatabase
impl PartialEq for ExportDatabase
impl StructuralPartialEq for ExportDatabase
Auto Trait Implementations§
impl Freeze for ExportDatabase
impl RefUnwindSafe for ExportDatabase
impl Send for ExportDatabase
impl Sync for ExportDatabase
impl Unpin for ExportDatabase
impl UnsafeUnpin for ExportDatabase
impl UnwindSafe for ExportDatabase
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