pub enum ForeignKeyAction {
Restrict,
Cascade,
SetNull,
NoAction,
SetDefault,
}Expand description
Foreign key on update & on delete actions
Variants
Restrict
Cascade
SetNull
NoAction
SetDefault
Trait Implementations
impl Clone for ForeignKeyAction
impl Clone for ForeignKeyAction
fn clone(&self) -> ForeignKeyAction
fn clone(&self) -> ForeignKeyAction
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Debug for ForeignKeyAction
impl Debug for ForeignKeyAction
impl Copy for ForeignKeyAction
Auto Trait Implementations
impl RefUnwindSafe for ForeignKeyAction
impl Send for ForeignKeyAction
impl Sync for ForeignKeyAction
impl Unpin for ForeignKeyAction
impl UnwindSafe for ForeignKeyAction
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more