pub struct TableConstraintsForeignKeysColumnReferences {
pub referenced_column: Option<String>,
pub referencing_column: Option<String>,
}Expand description
The pair of the foreign key column and primary key column.
This type is not used in any activity, and only used as part of another schema.
Fields§
§referenced_column: Option<String>Required. The column in the primary key that are referenced by the referencing_column.
referencing_column: Option<String>Required. The column that composes the foreign key.
Trait Implementations§
Source§impl Clone for TableConstraintsForeignKeysColumnReferences
impl Clone for TableConstraintsForeignKeysColumnReferences
Source§fn clone(&self) -> TableConstraintsForeignKeysColumnReferences
fn clone(&self) -> TableConstraintsForeignKeysColumnReferences
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 Default for TableConstraintsForeignKeysColumnReferences
impl Default for TableConstraintsForeignKeysColumnReferences
Source§fn default() -> TableConstraintsForeignKeysColumnReferences
fn default() -> TableConstraintsForeignKeysColumnReferences
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TableConstraintsForeignKeysColumnReferences
impl<'de> Deserialize<'de> for TableConstraintsForeignKeysColumnReferences
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
impl NestedType for TableConstraintsForeignKeysColumnReferences
impl Part for TableConstraintsForeignKeysColumnReferences
Auto Trait Implementations§
impl Freeze for TableConstraintsForeignKeysColumnReferences
impl RefUnwindSafe for TableConstraintsForeignKeysColumnReferences
impl Send for TableConstraintsForeignKeysColumnReferences
impl Sync for TableConstraintsForeignKeysColumnReferences
impl Unpin for TableConstraintsForeignKeysColumnReferences
impl UnwindSafe for TableConstraintsForeignKeysColumnReferences
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