pub struct DropForeignKey {
pub schema_name: String,
pub table_name: String,
pub foreign_key_name: String,
}Expand description
Drop a foreign key from an existing table.
Fields§
§schema_name: String§table_name: String§foreign_key_name: StringImplementations§
Trait Implementations§
Source§impl Clone for DropForeignKey
impl Clone for DropForeignKey
Source§fn clone(&self) -> DropForeignKey
fn clone(&self) -> DropForeignKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DropForeignKey
impl Debug for DropForeignKey
Source§impl PartialEq for DropForeignKey
impl PartialEq for DropForeignKey
Source§fn eq(&self, other: &DropForeignKey) -> bool
fn eq(&self, other: &DropForeignKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DropForeignKey
impl StructuralPartialEq for DropForeignKey
Auto Trait Implementations§
impl Freeze for DropForeignKey
impl RefUnwindSafe for DropForeignKey
impl Send for DropForeignKey
impl Sync for DropForeignKey
impl Unpin for DropForeignKey
impl UnsafeUnpin for DropForeignKey
impl UnwindSafe for DropForeignKey
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