pub struct SchemaHash(pub u64);Expand description
A content hash that uniquely identifies a type’s postcard-level structure.
Computed via blake3, truncated to 64 bits. The same type always produces the same TypeSchemaId regardless of connection, session, process, or language.
Tuple Fields§
§0: u64Trait Implementations§
Source§impl Clone for SchemaHash
impl Clone for SchemaHash
Source§fn clone(&self) -> SchemaHash
fn clone(&self) -> SchemaHash
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 SchemaHash
impl Debug for SchemaHash
Source§impl<'ʄ> Facet<'ʄ> for SchemaHash
impl<'ʄ> Facet<'ʄ> for SchemaHash
Source§impl Hash for SchemaHash
impl Hash for SchemaHash
Source§impl Ord for SchemaHash
impl Ord for SchemaHash
Source§fn cmp(&self, other: &SchemaHash) -> Ordering
fn cmp(&self, other: &SchemaHash) -> 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 SchemaHash
impl PartialEq for SchemaHash
Source§impl PartialOrd for SchemaHash
impl PartialOrd for SchemaHash
impl Copy for SchemaHash
impl Eq for SchemaHash
impl StructuralPartialEq for SchemaHash
Auto Trait Implementations§
impl Freeze for SchemaHash
impl RefUnwindSafe for SchemaHash
impl Send for SchemaHash
impl Sync for SchemaHash
impl Unpin for SchemaHash
impl UnsafeUnpin for SchemaHash
impl UnwindSafe for SchemaHash
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.