pub struct ForeignKeyInfo {
pub from_column: String,
pub to_table: String,
pub to_column: String,
}Expand description
Foreign key relationship from one column to another table/column.
Fields§
§from_column: String§to_table: String§to_column: StringTrait Implementations§
Source§impl Clone for ForeignKeyInfo
impl Clone for ForeignKeyInfo
Source§fn clone(&self) -> ForeignKeyInfo
fn clone(&self) -> ForeignKeyInfo
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 moreAuto Trait Implementations§
impl Freeze for ForeignKeyInfo
impl RefUnwindSafe for ForeignKeyInfo
impl Send for ForeignKeyInfo
impl Sync for ForeignKeyInfo
impl Unpin for ForeignKeyInfo
impl UnsafeUnpin for ForeignKeyInfo
impl UnwindSafe for ForeignKeyInfo
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