pub struct AddColumn {
pub table: TableId,
pub column: ColumnDef,
}Expand description
A statement to add a column to a table.
Fields§
§table: TableIdID of the table to add the column to.
column: ColumnDefColumn definition.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AddColumn
impl RefUnwindSafe for AddColumn
impl Send for AddColumn
impl Sync for AddColumn
impl Unpin for AddColumn
impl UnwindSafe for AddColumn
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