pub struct AlterTableStmt {
pub cmds: Vec<AlterTableCmds>,
pub relation: RelationKind,
pub relkind: ObjectType,
pub missing_ok: bool,
}
Fields§
§cmds: Vec<AlterTableCmds>
§relation: RelationKind
§relkind: ObjectType
§missing_ok: bool
Trait Implementations§
Source§impl Debug for AlterTableStmt
impl Debug for AlterTableStmt
Source§impl<'de> Deserialize<'de> for AlterTableStmt
impl<'de> Deserialize<'de> for AlterTableStmt
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AlterTableStmt
impl RefUnwindSafe for AlterTableStmt
impl Send for AlterTableStmt
impl Sync for AlterTableStmt
impl Unpin for AlterTableStmt
impl UnwindSafe for AlterTableStmt
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