pub struct AttachDatabase {
pub path: String,
pub alias: String,
pub options: HashMap<String, String>,
}Expand description
ATTACH DATABASE statement.
Fields§
§path: String§alias: String§options: HashMap<String, String>Trait Implementations§
Source§impl Clone for AttachDatabase
impl Clone for AttachDatabase
Source§fn clone(&self) -> AttachDatabase
fn clone(&self) -> AttachDatabase
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 AttachDatabase
impl Debug for AttachDatabase
Source§impl PartialEq for AttachDatabase
impl PartialEq for AttachDatabase
impl StructuralPartialEq for AttachDatabase
Auto Trait Implementations§
impl Freeze for AttachDatabase
impl RefUnwindSafe for AttachDatabase
impl Send for AttachDatabase
impl Sync for AttachDatabase
impl Unpin for AttachDatabase
impl UnsafeUnpin for AttachDatabase
impl UnwindSafe for AttachDatabase
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