pub struct TypeDropStatement { /* private fields */ }
Available on crate feature
backend-postgres
only.Implementations
sourceimpl TypeDropStatement
impl TypeDropStatement
pub fn new() -> Self
sourcepub fn name<T>(&mut self, name: T) -> &mut Self where
T: IntoIden,
pub fn name<T>(&mut self, name: T) -> &mut Self where
T: IntoIden,
Drop a type
use sea_query::{extension::postgres::Type, *};
struct FontFamily;
impl Iden for FontFamily {
fn unquoted(&self, s: &mut dyn std::fmt::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"#
);
pub fn names<T, I>(&mut self, names: I) -> &mut Self where
T: IntoIden,
I: IntoIterator<Item = T>,
pub fn build<T: TypeBuilder>(&self, type_builder: T) -> (String, Vec<Value>)
pub fn build_ref<T: TypeBuilder>(
&self,
type_builder: &T
) -> (String, Vec<Value>)
pub fn build_collect<T: TypeBuilder>(
&self,
type_builder: T,
collector: &mut dyn FnMut(Value)
) -> String
pub fn build_collect_ref<T: TypeBuilder>(
&self,
type_builder: &T,
collector: &mut dyn FnMut(Value)
) -> String
sourcepub fn to_string<T>(&self, type_builder: T) -> String where
T: TypeBuilder + QueryBuilder,
pub fn to_string<T>(&self, type_builder: T) -> String where
T: TypeBuilder + QueryBuilder,
Build corresponding SQL statement and return SQL string
Trait Implementations
sourceimpl Clone for TypeDropStatement
impl Clone for TypeDropStatement
sourcefn clone(&self) -> TypeDropStatement
fn clone(&self) -> TypeDropStatement
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TypeDropStatement
impl Debug for TypeDropStatement
sourceimpl Default for TypeDropStatement
impl Default for TypeDropStatement
sourcefn default() -> TypeDropStatement
fn default() -> TypeDropStatement
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl !RefUnwindSafe for TypeDropStatement
impl Send for TypeDropStatement
impl Sync for TypeDropStatement
impl Unpin for TypeDropStatement
impl !UnwindSafe for TypeDropStatement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more