Skip to main content

PropertyConstraintKind

Enum PropertyConstraintKind 

Source
pub enum PropertyConstraintKind {
    Unique,
    NotNull,
    PropertyType(PropertyType),
    NodeKey,
}
Expand description

Kind of single-property constraint. Unique comes from REQUIRE n.prop IS UNIQUE, NotNull from REQUIRE n.prop IS NOT NULL, and PropertyType(t) from REQUIRE n.prop IS :: <TYPE>. PropertyType carries the target type so a single constraint-kind enum covers all four flavours without blowing up into one variant per type.

Variants§

§

Unique

§

NotNull

§

PropertyType(PropertyType)

§

NodeKey

REQUIRE (n.a, n.b) IS NODE KEY — composite uniqueness + NOT NULL. The constraint holds across the tuple of values the spec’s properties list names; each property must be present and the tuple must be unique across every node carrying the constrained label.

Implementations§

Source§

impl PropertyConstraintKind

Source

pub fn as_string(&self) -> String

Short, human-facing token used in SHOW CONSTRAINTS output. For PropertyType the string carries the target type inside parentheses so operators reading the output can see what the constraint enforces at a glance. Stable — do not rename without a migration, because the auto-name the storage layer derives from this tag is part of the user-visible DROP surface.

Source

pub fn name_tag(&self) -> String

Lowercase tag used when generating a default constraint name. PropertyType(T) contributes type_<t> so every distinct type gets its own auto-name and two type constraints on the same (label, property) can coexist if they ever need to.

Source

pub fn allows_multi_property(&self) -> bool

True iff the kind accepts more than one property in its spec. Used by the storage layer to validate the properties list length at create time — single-property kinds must not receive a multi-element list.

Trait Implementations§

Source§

impl Clone for PropertyConstraintKind

Source§

fn clone(&self) -> PropertyConstraintKind

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PropertyConstraintKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for PropertyConstraintKind

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for PropertyConstraintKind

Source§

fn eq(&self, other: &PropertyConstraintKind) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for PropertyConstraintKind

Source§

impl Eq for PropertyConstraintKind

Source§

impl StructuralPartialEq for PropertyConstraintKind

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.