pub struct ForeignKey {
pub columns: Vec<ColumnId>,
pub references_table: TableId,
pub references_columns: Vec<ColumnId>,
pub on_update: ReferentialAction,
pub on_delete: ReferentialAction,
}Expand description
A foreign key payload, attached to a Constraint of kind
ConstraintKind::ForeignKey.
Fields§
§columns: Vec<ColumnId>Local column IDs (ordered) that constitute the FK.
references_table: TableIdThe table that this FK references.
references_columns: Vec<ColumnId>Column IDs of the referenced primary/unique key, in matching order.
on_update: ReferentialActionAction on parent UPDATE.
on_delete: ReferentialActionAction on parent DELETE.
Trait Implementations§
Source§impl Clone for ForeignKey
impl Clone for ForeignKey
Source§fn clone(&self) -> ForeignKey
fn clone(&self) -> ForeignKey
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 ForeignKey
impl Debug for ForeignKey
Source§impl<'de> Deserialize<'de> for ForeignKey
impl<'de> Deserialize<'de> for ForeignKey
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ForeignKey
impl PartialEq for ForeignKey
Source§impl Serialize for ForeignKey
impl Serialize for ForeignKey
impl StructuralPartialEq for ForeignKey
Auto Trait Implementations§
impl Freeze for ForeignKey
impl RefUnwindSafe for ForeignKey
impl Send for ForeignKey
impl Sync for ForeignKey
impl Unpin for ForeignKey
impl UnsafeUnpin for ForeignKey
impl UnwindSafe for ForeignKey
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