Struct ForeignKey
pub struct ForeignKey { /* private fields */ }Expand description
Foreign key metadata.
Implementations§
§impl ForeignKey
impl ForeignKey
pub const fn new(source: KeyColumn, target: KeyColumn) -> ForeignKey
pub const fn new(source: KeyColumn, target: KeyColumn) -> ForeignKey
Creates foreign key metadata.
pub fn from_columns(
table: TableName,
column: ColumnName,
referenced_table: TableName,
referenced_column: ColumnName,
) -> ForeignKey
pub fn from_columns( table: TableName, column: ColumnName, referenced_table: TableName, referenced_column: ColumnName, ) -> ForeignKey
Creates foreign key metadata from table and column names.
Trait Implementations§
§impl Clone for ForeignKey
impl Clone for ForeignKey
§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 more§impl Debug for ForeignKey
impl Debug for ForeignKey
§impl Hash for ForeignKey
impl Hash for ForeignKey
§impl Ord for ForeignKey
impl Ord for ForeignKey
§impl PartialEq for ForeignKey
impl PartialEq for ForeignKey
§impl PartialOrd for ForeignKey
impl PartialOrd for ForeignKey
impl Eq 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