pub struct DropForeignKeyOp {
pub table: String,
pub name: String,
}Expand description
Drop foreign key operation.
Fields§
§table: StringTable name.
name: StringConstraint name.
Trait Implementations§
Source§impl Clone for DropForeignKeyOp
impl Clone for DropForeignKeyOp
Source§fn clone(&self) -> DropForeignKeyOp
fn clone(&self) -> DropForeignKeyOp
Returns a duplicate 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 DropForeignKeyOp
impl Debug for DropForeignKeyOp
Source§impl From<DropForeignKeyOp> for Operation
impl From<DropForeignKeyOp> for Operation
Source§fn from(op: DropForeignKeyOp) -> Self
fn from(op: DropForeignKeyOp) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DropForeignKeyOp
impl PartialEq for DropForeignKeyOp
impl Eq for DropForeignKeyOp
impl StructuralPartialEq for DropForeignKeyOp
Auto Trait Implementations§
impl Freeze for DropForeignKeyOp
impl RefUnwindSafe for DropForeignKeyOp
impl Send for DropForeignKeyOp
impl Sync for DropForeignKeyOp
impl Unpin for DropForeignKeyOp
impl UnwindSafe for DropForeignKeyOp
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