pub struct AlterTable {
pub schema: Option<String>,
pub name: String,
pub actions: Vec<AlterAction>,
}
Fields§
§schema: Option<String>
§name: String
§actions: Vec<AlterAction>
Trait Implementations§
Source§impl Clone for AlterTable
impl Clone for AlterTable
Source§fn clone(&self) -> AlterTable
fn clone(&self) -> AlterTable
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 AlterTable
impl Debug for AlterTable
Source§impl PartialEq for AlterTable
impl PartialEq for AlterTable
Source§impl ToSql for AlterTable
impl ToSql for AlterTable
impl Eq for AlterTable
impl StructuralPartialEq for AlterTable
Auto Trait Implementations§
impl Freeze for AlterTable
impl RefUnwindSafe for AlterTable
impl Send for AlterTable
impl Sync for AlterTable
impl Unpin for AlterTable
impl UnwindSafe for AlterTable
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