Struct clia_rustorm::table::ForeignKey
source · [−]pub struct ForeignKey {
pub name: Option<String>,
pub columns: Vec<ColumnName>,
pub foreign_table: TableName,
pub referred_columns: Vec<ColumnName>,
}
Expand description
example: category { id, name } product { product_id, name, category_id }
if the table in context is product and the foreign table is category ForeignKey{ name: product_category_fkey columns: category_id foreign_table: category referred_columns: id }
Fields
name: Option<String>
columns: Vec<ColumnName>
foreign_table: TableName
referred_columns: Vec<ColumnName>
Trait Implementations
sourceimpl Clone for ForeignKey
impl Clone for ForeignKey
sourcefn clone(&self) -> ForeignKey
fn clone(&self) -> ForeignKey
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ForeignKey
impl Debug for ForeignKey
sourceimpl PartialEq<ForeignKey> for ForeignKey
impl PartialEq<ForeignKey> for ForeignKey
sourcefn eq(&self, other: &ForeignKey) -> bool
fn eq(&self, other: &ForeignKey) -> bool
impl StructuralPartialEq for ForeignKey
Auto Trait Implementations
impl RefUnwindSafe for ForeignKey
impl Send for ForeignKey
impl Sync for ForeignKey
impl Unpin for ForeignKey
impl UnwindSafe for ForeignKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more