Struct sea_schema::postgres::def::References
source · pub struct References {
pub name: String,
pub columns: Vec<String>,
pub table: String,
pub foreign_columns: Vec<String>,
pub on_update: Option<ForeignKeyAction>,
pub on_delete: Option<ForeignKeyAction>,
}Available on crate features
postgres and def only.Expand description
A constraint that column references the values appearing in the row of another table
Fields§
§name: String§columns: Vec<String>§table: String§foreign_columns: Vec<String>§on_update: Option<ForeignKeyAction>§on_delete: Option<ForeignKeyAction>Implementations§
source§impl References
impl References
pub fn write(&self) -> ForeignKeyCreateStatement
Available on crate feature
writer only.Trait Implementations§
source§impl Clone for References
impl Clone for References
source§fn clone(&self) -> References
fn clone(&self) -> References
Returns a copy 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 References
impl Debug for References
source§impl PartialEq<References> for References
impl PartialEq<References> for References
source§fn eq(&self, other: &References) -> bool
fn eq(&self, other: &References) -> bool
This method tests for
self and other values to be equal, and is used
by ==.