pub struct ColumnChange {
pub name: String,
pub old_type: Option<String>,
pub new_type: Option<String>,
pub old_nullable: Option<bool>,
pub new_nullable: Option<bool>,
}Expand description
Change to a column definition
Fields§
§name: String§old_type: Option<String>§new_type: Option<String>§old_nullable: Option<bool>§new_nullable: Option<bool>Trait Implementations§
Source§impl Debug for ColumnChange
impl Debug for ColumnChange
Auto Trait Implementations§
impl Freeze for ColumnChange
impl RefUnwindSafe for ColumnChange
impl Send for ColumnChange
impl Sync for ColumnChange
impl Unpin for ColumnChange
impl UnwindSafe for ColumnChange
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