pub struct SerializedMerkle(pub [u8; 33]);Tuple Fields§
§0: [u8; 33]Implementations§
Source§impl SerializedMerkle
impl SerializedMerkle
pub fn from_prefix(s: &str) -> Option<Self>
Trait Implementations§
Source§impl Check for SerializedMerkle
impl Check for SerializedMerkle
Source§impl Clone for SerializedMerkle
impl Clone for SerializedMerkle
Source§fn clone(&self) -> SerializedMerkle
fn clone(&self) -> SerializedMerkle
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 moreimpl Copy for SerializedMerkle
Source§impl Debug for SerializedMerkle
impl Debug for SerializedMerkle
impl Eq for SerializedMerkle
Source§impl From<&SerializedMerkle> for Scalar
impl From<&SerializedMerkle> for Scalar
Source§fn from(h: &SerializedMerkle) -> Self
fn from(h: &SerializedMerkle) -> Self
Converts to this type from the input type.
Source§impl Ord for SerializedMerkle
impl Ord for SerializedMerkle
Source§fn cmp(&self, other: &SerializedMerkle) -> Ordering
fn cmp(&self, other: &SerializedMerkle) -> 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 SerializedMerkle
impl PartialEq for SerializedMerkle
Source§impl PartialOrd for SerializedMerkle
impl PartialOrd for SerializedMerkle
Source§impl Storable for SerializedMerkle
impl Storable for SerializedMerkle
Source§type PageReferences = Empty<u64>
type PageReferences = Empty<u64>
An iterator over the offsets to pages contained in this
value. Only values from this crate can generate non-empty
iterators, but combined values (like tuples) must chain the
iterators returned by method
page_offsets.Source§fn page_references(&self) -> Self::PageReferences
fn page_references(&self) -> Self::PageReferences
If this value is an offset to another page at offset
offset,
return Some(offset). Return None else.impl StructuralPartialEq for SerializedMerkle
Source§impl UnsizedStorable for SerializedMerkle
impl UnsizedStorable for SerializedMerkle
Source§fn size(&self) -> usize
fn size(&self) -> usize
If Self::SIZE.is_some(), this must return the same
value. The default implementation is Self;:SIZE.unwrap().
const ALIGN: usize
Source§unsafe fn write_to_page(&self, p: *mut u8)
unsafe fn write_to_page(&self, p: *mut u8)
Write to a page. Must not overwrite the allocated size, but
this isn’t checked (which is why it’s unsafe).
unsafe fn from_raw_ptr<'a, T>(_: &T, p: *const u8) -> &'a Self
Auto Trait Implementations§
impl Freeze for SerializedMerkle
impl RefUnwindSafe for SerializedMerkle
impl Send for SerializedMerkle
impl Sync for SerializedMerkle
impl Unpin for SerializedMerkle
impl UnsafeUnpin for SerializedMerkle
impl UnwindSafe for SerializedMerkle
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§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.