pub enum MatchType {
Simple,
Full,
}Expand description
v7.38 (read01, T29) — FK MATCH type. SIMPLE (default) skips the check when
ANY referencing column is NULL; FULL requires all-or-none NULL (a mixed-NULL
key errors). PARTIAL is parse-rejected (PG does not implement it either).
Variants§
Trait Implementations§
impl Copy for MatchType
impl Eq for MatchType
impl StructuralPartialEq for MatchType
Auto Trait Implementations§
impl Freeze for MatchType
impl RefUnwindSafe for MatchType
impl Send for MatchType
impl Sync for MatchType
impl Unpin for MatchType
impl UnsafeUnpin for MatchType
impl UnwindSafe for MatchType
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