pub struct CreateExtensionStatement {
pub token: Token,
pub name: Identifier,
pub version: SmartString,
pub if_not_exists: bool,
}Expand description
Bind one exact already-installed package to the current database.
Fields§
§token: Token§name: Identifier§version: SmartString§if_not_exists: boolTrait Implementations§
Source§impl Clone for CreateExtensionStatement
impl Clone for CreateExtensionStatement
Source§fn clone(&self) -> CreateExtensionStatement
fn clone(&self) -> CreateExtensionStatement
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 CreateExtensionStatement
impl Debug for CreateExtensionStatement
Source§impl Display for CreateExtensionStatement
impl Display for CreateExtensionStatement
Source§impl PartialEq for CreateExtensionStatement
impl PartialEq for CreateExtensionStatement
impl StructuralPartialEq for CreateExtensionStatement
Auto Trait Implementations§
impl Freeze for CreateExtensionStatement
impl RefUnwindSafe for CreateExtensionStatement
impl Send for CreateExtensionStatement
impl Sync for CreateExtensionStatement
impl Unpin for CreateExtensionStatement
impl UnsafeUnpin for CreateExtensionStatement
impl UnwindSafe for CreateExtensionStatement
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