pub struct Constraint {
pub id: ConstraintId,
pub name: Option<String>,
pub kind: ConstraintKind,
}Expand description
A named (or unnamed) constraint on a table.
Fields§
§id: ConstraintIdUnique handle within the owning model.
name: Option<String>Optional explicit name. If None, the SQL exporter will emit it
inline (for PRIMARY KEY / UNIQUE) or synthesise a name (for FK).
kind: ConstraintKindConstraint kind and payload.
Implementations§
Source§impl Constraint
impl Constraint
Sourcepub fn is_primary_key(&self) -> bool
pub fn is_primary_key(&self) -> bool
true if this is a primary-key constraint.
Sourcepub fn is_foreign_key(&self) -> bool
pub fn is_foreign_key(&self) -> bool
true if this is a foreign-key constraint.
Trait Implementations§
Source§impl Clone for Constraint
impl Clone for Constraint
Source§fn clone(&self) -> Constraint
fn clone(&self) -> Constraint
Returns a duplicate 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 Constraint
impl Debug for Constraint
Source§impl<'de> Deserialize<'de> for Constraint
impl<'de> Deserialize<'de> for Constraint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Constraint
impl PartialEq for Constraint
Source§impl Serialize for Constraint
impl Serialize for Constraint
impl StructuralPartialEq for Constraint
Auto Trait Implementations§
impl Freeze for Constraint
impl RefUnwindSafe for Constraint
impl Send for Constraint
impl Sync for Constraint
impl Unpin for Constraint
impl UnsafeUnpin for Constraint
impl UnwindSafe for Constraint
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