pub struct ForeignKey {
pub database: String,
pub column: String,
}
Expand description
Foreign key.
Is not guaranteed to point to a valid table or column since the DBC files themselves do not guarantee this.
Fields§
§database: String
Name of the table this foreign key belongs to.
column: String
Name of the column in the table.
Implementations§
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 Display for ForeignKey
impl Display for ForeignKey
Source§impl Hash for ForeignKey
impl Hash for ForeignKey
Source§impl Ord for ForeignKey
impl Ord for ForeignKey
Source§fn cmp(&self, other: &ForeignKey) -> Ordering
fn cmp(&self, other: &ForeignKey) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ForeignKey
impl PartialEq for ForeignKey
Source§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 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