pub struct TypeDropStatement { /* private fields */ }
Available on crate feature
backend-postgres
only.Implementations§
source§impl TypeDropStatement
impl TypeDropStatement
pub fn new() -> Self
sourcepub fn name<T>(&mut self, name: T) -> &mut Selfwhere
T: IntoTypeRef,
pub fn name<T>(&mut self, name: T) -> &mut Selfwhere
T: IntoTypeRef,
Drop a type
use sea_query::{extension::postgres::Type, *};
struct FontFamily;
impl Iden for FontFamily {
fn unquoted(&self, s: &mut dyn Write) {
write!(s, "{}", "font_family").unwrap();
}
}
assert_eq!(
Type::drop()
.if_exists()
.name(FontFamily)
.restrict()
.to_string(PostgresQueryBuilder),
r#"DROP TYPE IF EXISTS "font_family" RESTRICT"#
);
sourcepub fn names<T, I>(&mut self, names: I) -> &mut Selfwhere
T: IntoTypeRef,
I: IntoIterator<Item = T>,
pub fn names<T, I>(&mut self, names: I) -> &mut Selfwhere
T: IntoTypeRef,
I: IntoIterator<Item = T>,
Drop multiple types
use sea_query::{extension::postgres::Type, *};
#[derive(Iden)]
enum KycStatus {
#[iden = "kyc_status"]
Type,
Pending,
Approved,
}
#[derive(Iden)]
enum FontFamily {
#[iden = "font_family"]
Type,
Aerial,
Forte,
}
assert_eq!(
Type::drop()
.if_exists()
.names([
SeaRc::new(KycStatus::Type) as DynIden,
SeaRc::new(FontFamily::Type) as DynIden,
])
.cascade()
.to_string(PostgresQueryBuilder),
r#"DROP TYPE IF EXISTS "kyc_status", "font_family" CASCADE"#
);
source§impl TypeDropStatement
impl TypeDropStatement
pub fn build_ref<T: TypeBuilder>(&self, type_builder: &T) -> String
pub fn build_collect<T: TypeBuilder>( &self, type_builder: T, sql: &mut dyn SqlWriter, ) -> String
pub fn build_collect_ref<T: TypeBuilder>( &self, type_builder: &T, sql: &mut dyn SqlWriter, ) -> String
sourcepub fn to_string<T>(&self, type_builder: T) -> Stringwhere
T: TypeBuilder + QueryBuilder,
pub fn to_string<T>(&self, type_builder: T) -> Stringwhere
T: TypeBuilder + QueryBuilder,
Build corresponding SQL statement and return SQL string
Trait Implementations§
source§impl Clone for TypeDropStatement
impl Clone for TypeDropStatement
source§fn clone(&self) -> TypeDropStatement
fn clone(&self) -> TypeDropStatement
Returns a copy 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 moresource§impl Debug for TypeDropStatement
impl Debug for TypeDropStatement
source§impl Default for TypeDropStatement
impl Default for TypeDropStatement
source§fn default() -> TypeDropStatement
fn default() -> TypeDropStatement
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TypeDropStatement
impl !RefUnwindSafe for TypeDropStatement
impl Send for TypeDropStatement
impl Sync for TypeDropStatement
impl Unpin for TypeDropStatement
impl !UnwindSafe for TypeDropStatement
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)