#[repr(transparent)]pub struct PropertyKeyId(pub u32);Expand description
Unique identifier for a property key in the catalog.
Property keys are strings used as names for node/edge properties. The catalog assigns unique IDs for efficient storage.
Tuple Fields§
§0: u32Implementations§
Source§impl PropertyKeyId
impl PropertyKeyId
Trait Implementations§
Source§impl Clone for PropertyKeyId
impl Clone for PropertyKeyId
Source§fn clone(&self) -> PropertyKeyId
fn clone(&self) -> PropertyKeyId
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 PropertyKeyId
impl Debug for PropertyKeyId
Source§impl Default for PropertyKeyId
impl Default for PropertyKeyId
Source§fn default() -> PropertyKeyId
fn default() -> PropertyKeyId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyKeyId
impl<'de> Deserialize<'de> for PropertyKeyId
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 Display for PropertyKeyId
impl Display for PropertyKeyId
Source§impl From<PropertyKeyId> for u32
impl From<PropertyKeyId> for u32
Source§fn from(id: PropertyKeyId) -> Self
fn from(id: PropertyKeyId) -> Self
Converts to this type from the input type.
Source§impl From<u32> for PropertyKeyId
impl From<u32> for PropertyKeyId
Source§impl Hash for PropertyKeyId
impl Hash for PropertyKeyId
Source§impl Ord for PropertyKeyId
impl Ord for PropertyKeyId
Source§fn cmp(&self, other: &PropertyKeyId) -> Ordering
fn cmp(&self, other: &PropertyKeyId) -> Ordering
1.21.0 · 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 PropertyKeyId
impl PartialEq for PropertyKeyId
Source§impl PartialOrd for PropertyKeyId
impl PartialOrd for PropertyKeyId
Source§impl Serialize for PropertyKeyId
impl Serialize for PropertyKeyId
impl Copy for PropertyKeyId
impl Eq for PropertyKeyId
impl StructuralPartialEq for PropertyKeyId
Auto Trait Implementations§
impl Freeze for PropertyKeyId
impl RefUnwindSafe for PropertyKeyId
impl Send for PropertyKeyId
impl Sync for PropertyKeyId
impl Unpin for PropertyKeyId
impl UnwindSafe for PropertyKeyId
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.