#[repr(transparent)]pub struct ConstraintId(pub u32);Expand description
An identifier for a constraint, unique within a database.
Tuple Fields§
§0: u32Implementations§
Source§impl ConstraintId
impl ConstraintId
Source§impl ConstraintId
impl ConstraintId
Sourcepub const SENTINEL: Self
pub const SENTINEL: Self
The sentinel value for this type. This will be initialized to a valid ID upon insertion into a system table as a primary key.
Sourcepub fn is_sentinel(self) -> bool
pub fn is_sentinel(self) -> bool
Check if this ID is the sentinel value.
Trait Implementations§
Source§impl Clone for ConstraintId
impl Clone for ConstraintId
Source§fn clone(&self) -> ConstraintId
fn clone(&self) -> ConstraintId
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 ConstraintId
impl Debug for ConstraintId
Source§impl Default for ConstraintId
impl Default for ConstraintId
Source§fn default() -> ConstraintId
fn default() -> ConstraintId
Returns the “default value” for a type. Read more
Source§impl Display for ConstraintId
impl Display for ConstraintId
Source§impl From<ConstraintId> for u32
impl From<ConstraintId> for u32
Source§fn from(value: ConstraintId) -> Self
fn from(value: ConstraintId) -> Self
Converts to this type from the input type.
Source§impl From<i32> for ConstraintId
impl From<i32> for ConstraintId
Source§impl From<u32> for ConstraintId
impl From<u32> for ConstraintId
Source§impl From<usize> for ConstraintId
impl From<usize> for ConstraintId
Source§impl Hash for ConstraintId
impl Hash for ConstraintId
Source§impl Ord for ConstraintId
impl Ord for ConstraintId
Source§fn cmp(&self, other: &ConstraintId) -> Ordering
fn cmp(&self, other: &ConstraintId) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ConstraintId
impl PartialEq for ConstraintId
Source§fn eq(&self, other: &ConstraintId) -> bool
fn eq(&self, other: &ConstraintId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ConstraintId
impl PartialOrd for ConstraintId
impl Copy for ConstraintId
impl Eq for ConstraintId
impl IsEnabled for ConstraintId
impl StructuralPartialEq for ConstraintId
Auto Trait Implementations§
impl Freeze for ConstraintId
impl RefUnwindSafe for ConstraintId
impl Send for ConstraintId
impl Sync for ConstraintId
impl Unpin for ConstraintId
impl UnsafeUnpin for ConstraintId
impl UnwindSafe for ConstraintId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more