pub enum SQLConstraintKind {
PrimaryKey,
ForeignKey,
Unique,
Check,
}Variants§
Trait Implementations§
Source§impl Clone for SQLConstraintKind
impl Clone for SQLConstraintKind
Source§fn clone(&self) -> SQLConstraintKind
fn clone(&self) -> SQLConstraintKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SQLConstraintKind
Source§impl Debug for SQLConstraintKind
impl Debug for SQLConstraintKind
impl Eq for SQLConstraintKind
Source§impl PartialEq for SQLConstraintKind
impl PartialEq for SQLConstraintKind
impl StructuralPartialEq for SQLConstraintKind
Auto Trait Implementations§
impl Freeze for SQLConstraintKind
impl RefUnwindSafe for SQLConstraintKind
impl Send for SQLConstraintKind
impl Sync for SQLConstraintKind
impl Unpin for SQLConstraintKind
impl UnsafeUnpin for SQLConstraintKind
impl UnwindSafe for SQLConstraintKind
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