Struct ExtensionCreateStatement
pub struct ExtensionCreateStatement {
pub(crate) name: String,
pub(crate) schema: Option<String>,
pub(crate) version: Option<String>,
pub(crate) if_not_exists: bool,
pub(crate) cascade: bool,
}Expand description
Creates a new “CREATE EXTENSION” statement for PostgreSQL
§Synopsis
ⓘ
CREATE EXTENSION [ IF NOT EXISTS ] extension_name
[ WITH ] [ SCHEMA schema_name ]
[ VERSION version ]
[ CASCADE ]§Example
Creates the “ltree” extension if it doesn’t exists.
use sea_query::{extension::postgres::Extension, *};
assert_eq!(
Extension::create()
.name("ltree")
.schema("public")
.version("v0.1.0")
.cascade()
.if_not_exists()
.to_string(PostgresQueryBuilder),
r#"CREATE EXTENSION IF NOT EXISTS ltree WITH SCHEMA public VERSION v0.1.0 CASCADE"#
);§References
Fields§
§name: String§schema: Option<String>§version: Option<String>§if_not_exists: bool§cascade: boolImplementations§
§impl ExtensionCreateStatement
impl ExtensionCreateStatement
pub fn new() -> ExtensionCreateStatement
pub fn name<T>(&mut self, name: T) -> &mut ExtensionCreateStatement
pub fn name<T>(&mut self, name: T) -> &mut ExtensionCreateStatement
Sets the name of the extension to be created.
pub fn schema<T>(&mut self, schema: T) -> &mut ExtensionCreateStatement
pub fn schema<T>(&mut self, schema: T) -> &mut ExtensionCreateStatement
Uses “WITH SCHEMA” on Create Extension Statement.
pub fn version<T>(&mut self, version: T) -> &mut ExtensionCreateStatement
pub fn version<T>(&mut self, version: T) -> &mut ExtensionCreateStatement
Uses “VERSION” on Create Extension Statement.
pub fn cascade(&mut self) -> &mut ExtensionCreateStatement
pub fn cascade(&mut self) -> &mut ExtensionCreateStatement
Uses “CASCADE” on Create Extension Statement.
pub fn if_not_exists(&mut self) -> &mut ExtensionCreateStatement
pub fn if_not_exists(&mut self) -> &mut ExtensionCreateStatement
Uses “IF NOT EXISTS” on Create Extension Statement.
§impl ExtensionCreateStatement
impl ExtensionCreateStatement
pub fn build_ref<T>(&self, extension_builder: &T) -> Stringwhere
T: ExtensionBuilder,
pub fn build_collect<T>(
&self,
extension_builder: T,
sql: &mut dyn SqlWriter,
) -> Stringwhere
T: ExtensionBuilder,
pub fn build_collect_ref<T>(
&self,
extension_builder: &T,
sql: &mut dyn SqlWriter,
) -> Stringwhere
T: ExtensionBuilder,
pub fn to_string<T>(&self, extension_builder: T) -> Stringwhere
T: ExtensionBuilder + QueryBuilder,
pub fn to_string<T>(&self, extension_builder: T) -> Stringwhere
T: ExtensionBuilder + QueryBuilder,
Build corresponding SQL statement and return SQL string
Trait Implementations§
§impl Clone for ExtensionCreateStatement
impl Clone for ExtensionCreateStatement
§fn clone(&self) -> ExtensionCreateStatement
fn clone(&self) -> ExtensionCreateStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for ExtensionCreateStatement
impl Debug for ExtensionCreateStatement
§impl Default for ExtensionCreateStatement
impl Default for ExtensionCreateStatement
§fn default() -> ExtensionCreateStatement
fn default() -> ExtensionCreateStatement
Returns the “default value” for a type. Read more
§impl PartialEq for ExtensionCreateStatement
impl PartialEq for ExtensionCreateStatement
impl Eq for ExtensionCreateStatement
impl StructuralPartialEq for ExtensionCreateStatement
Auto Trait Implementations§
impl Freeze for ExtensionCreateStatement
impl RefUnwindSafe for ExtensionCreateStatement
impl Send for ExtensionCreateStatement
impl Sync for ExtensionCreateStatement
impl Unpin for ExtensionCreateStatement
impl UnwindSafe for ExtensionCreateStatement
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
Casts
self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read moreSource§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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Forward to the method defined on the type
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Forward to the method defined on the type
Any.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].