pub struct TableForeignKey { /* private fields */ }
Expand description
Specification of a foreign key
Implementations§
source§impl TableForeignKey
impl TableForeignKey
sourcepub fn from_tbl<T>(&mut self, table: T) -> &mut Selfwhere
T: IntoTableRef,
pub fn from_tbl<T>(&mut self, table: T) -> &mut Selfwhere
T: IntoTableRef,
Set key table
sourcepub fn to_tbl<R>(&mut self, ref_table: R) -> &mut Selfwhere
R: IntoTableRef,
pub fn to_tbl<R>(&mut self, ref_table: R) -> &mut Selfwhere
R: IntoTableRef,
Set referencing table
sourcepub fn to_col<R>(&mut self, ref_column: R) -> &mut Selfwhere
R: IntoIden,
pub fn to_col<R>(&mut self, ref_column: R) -> &mut Selfwhere
R: IntoIden,
Add referencing column
sourcepub fn on_delete(&mut self, action: ForeignKeyAction) -> &mut Self
pub fn on_delete(&mut self, action: ForeignKeyAction) -> &mut Self
Set on delete action
sourcepub fn on_update(&mut self, action: ForeignKeyAction) -> &mut Self
pub fn on_update(&mut self, action: ForeignKeyAction) -> &mut Self
Set on update action
pub fn get_ref_table(&self) -> Option<&TableRef>
pub fn get_columns(&self) -> Vec<String>
pub fn get_ref_columns(&self) -> Vec<String>
pub fn get_on_delete(&self) -> Option<ForeignKeyAction>
pub fn get_on_update(&self) -> Option<ForeignKeyAction>
pub fn take(&mut self) -> Self
Trait Implementations§
source§impl Clone for TableForeignKey
impl Clone for TableForeignKey
source§fn clone(&self) -> TableForeignKey
fn clone(&self) -> TableForeignKey
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 TableForeignKey
impl Debug for TableForeignKey
source§impl Default for TableForeignKey
impl Default for TableForeignKey
source§fn default() -> TableForeignKey
fn default() -> TableForeignKey
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableForeignKey
impl !RefUnwindSafe for TableForeignKey
impl Send for TableForeignKey
impl Sync for TableForeignKey
impl Unpin for TableForeignKey
impl !UnwindSafe for TableForeignKey
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)