pub struct AttachStatement {
pub expr: Expr,
pub schema: String,
}Expand description
An ATTACH statement.
Fields§
§expr: ExprThe database file expression.
schema: StringThe schema name.
Trait Implementations§
Source§impl Clone for AttachStatement
impl Clone for AttachStatement
Source§fn clone(&self) -> AttachStatement
fn clone(&self) -> AttachStatement
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 AttachStatement
impl Debug for AttachStatement
Source§impl Display for AttachStatement
impl Display for AttachStatement
Source§impl PartialEq for AttachStatement
impl PartialEq for AttachStatement
impl StructuralPartialEq for AttachStatement
Auto Trait Implementations§
impl !Freeze for AttachStatement
impl RefUnwindSafe for AttachStatement
impl Send for AttachStatement
impl Sync for AttachStatement
impl Unpin for AttachStatement
impl UnsafeUnpin for AttachStatement
impl UnwindSafe for AttachStatement
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