Enum sea_schema::postgres::def::ForeignKeyAction
source · pub enum ForeignKeyAction {
Cascade,
SetNull,
SetDefault,
Restrict,
NoAction,
}Available on crate features
postgres and def only.Variants§
Trait Implementations§
source§impl Clone for ForeignKeyAction
impl Clone for ForeignKeyAction
source§fn clone(&self) -> ForeignKeyAction
fn clone(&self) -> ForeignKeyAction
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 ForeignKeyAction
impl Debug for ForeignKeyAction
source§impl PartialEq<ForeignKeyAction> for ForeignKeyAction
impl PartialEq<ForeignKeyAction> for ForeignKeyAction
source§fn eq(&self, other: &ForeignKeyAction) -> bool
fn eq(&self, other: &ForeignKeyAction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.