pub struct TypeAlterStatement { /* private fields */ }
Available on crate feature
backend-postgres
only.Implementations
sourceimpl TypeAlterStatement
impl TypeAlterStatement
pub fn new() -> Self
sourcepub fn name<T>(self, name: T) -> Self where
T: IntoIden,
pub fn name<T>(self, name: T) -> Self where
T: IntoIden,
Change the definition of a type
use sea_query::{extension::postgres::Type, *};
enum FontFamily {
Type,
Serif,
Sans,
Monospace,
}
impl Iden for FontFamily {
fn unquoted(&self, s: &mut dyn std::fmt::Write) {
write!(
s,
"{}",
match self {
Self::Type => "font_family",
Self::Serif => "serif",
Self::Sans => "sans",
Self::Monospace => "monospace",
}
)
.unwrap();
}
}
assert_eq!(
Type::alter()
.name(FontFamily::Type)
.add_value(Alias::new("cursive"))
.to_string(PostgresQueryBuilder),
r#"ALTER TYPE "font_family" ADD VALUE 'cursive'"#
);
pub fn add_value<T>(self, value: T) -> Self where
T: IntoIden,
sourcepub fn before<T>(self, value: T) -> Self where
T: IntoIden,
pub fn before<T>(self, value: T) -> Self where
T: IntoIden,
Add a enum value before an existing value
use sea_query::{extension::postgres::Type, tests_cfg::*, *};
assert_eq!(
Type::alter()
.name(Font::Table)
.add_value(Alias::new("weight"))
.before(Font::Variant)
.to_string(PostgresQueryBuilder),
r#"ALTER TYPE "font" ADD VALUE 'weight' BEFORE 'variant'"#
)
pub fn after<T>(self, value: T) -> Self where
T: IntoIden,
pub fn rename_to<T>(self, name: T) -> Self where
T: IntoIden,
sourcepub fn rename_value<T, V>(self, existing: T, new_name: V) -> Self where
T: IntoIden,
V: IntoIden,
pub fn rename_value<T, V>(self, existing: T, new_name: V) -> Self where
T: IntoIden,
V: IntoIden,
Rename a enum value
use sea_query::{extension::postgres::Type, tests_cfg::*, *};
assert_eq!(
Type::alter()
.name(Font::Table)
.rename_value(Alias::new("variant"), Alias::new("language"))
.to_string(PostgresQueryBuilder),
r#"ALTER TYPE "font" RENAME VALUE 'variant' TO 'language'"#
)
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 TypeAlterStatement
impl Clone for TypeAlterStatement
sourcefn clone(&self) -> TypeAlterStatement
fn clone(&self) -> TypeAlterStatement
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 TypeAlterStatement
impl Debug for TypeAlterStatement
sourceimpl Default for TypeAlterStatement
impl Default for TypeAlterStatement
sourcefn default() -> TypeAlterStatement
fn default() -> TypeAlterStatement
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl !RefUnwindSafe for TypeAlterStatement
impl Send for TypeAlterStatement
impl Sync for TypeAlterStatement
impl Unpin for TypeAlterStatement
impl !UnwindSafe for TypeAlterStatement
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