pub struct ConstraintDefinition {
pub name: String,
pub kind: StoredConstraintKind,
pub entity: StoredIndexEntity,
pub label: String,
pub properties: Vec<String>,
pub owned_index: Option<String>,
}Fields§
§name: String§kind: StoredConstraintKind§entity: StoredIndexEntity§label: String§properties: Vec<String>§owned_index: Option<String>Name of the backing RANGE index, if any. Same as name for
uniqueness and key constraints; None for existence/type.
Trait Implementations§
Source§impl Clone for ConstraintDefinition
impl Clone for ConstraintDefinition
Source§fn clone(&self) -> ConstraintDefinition
fn clone(&self) -> ConstraintDefinition
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 moreSource§impl Debug for ConstraintDefinition
impl Debug for ConstraintDefinition
Source§impl<'de> Deserialize<'de> for ConstraintDefinition
impl<'de> Deserialize<'de> for ConstraintDefinition
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 ConstraintDefinition
impl PartialEq for ConstraintDefinition
Source§fn eq(&self, other: &ConstraintDefinition) -> bool
fn eq(&self, other: &ConstraintDefinition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConstraintDefinition
impl Serialize for ConstraintDefinition
impl StructuralPartialEq for ConstraintDefinition
Auto Trait Implementations§
impl Freeze for ConstraintDefinition
impl RefUnwindSafe for ConstraintDefinition
impl Send for ConstraintDefinition
impl Sync for ConstraintDefinition
impl Unpin for ConstraintDefinition
impl UnsafeUnpin for ConstraintDefinition
impl UnwindSafe for ConstraintDefinition
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