pub struct InternalKey<const N: usize>(/* private fields */);Expand description
The actual key value used in the tree
Implementations§
Source§impl<const N: usize> InternalKey<N>
impl<const N: usize> InternalKey<N>
pub fn new(array: [u8; N]) -> Self
pub fn as_slice(&self) -> &[u8] ⓘ
pub const fn zero() -> Self
pub const fn max_index() -> usize
pub fn get_bit(&self, i: usize) -> bool
pub fn set_bit(&mut self, i: usize)
pub fn clear_bit(&mut self, i: usize)
Sourcepub fn fork_height(&self, key: &InternalKey<N>) -> usize
pub fn fork_height(&self, key: &InternalKey<N>) -> usize
Treat InternalKey as a path in a tree fork height is the number of common bits(from higher to lower) of two InternalKeys
Sourcepub fn parent_path(&self, height: usize) -> Self
pub fn parent_path(&self, height: usize) -> Self
Treat InternalKey as a path in a tree return parent_path of self
Sourcepub fn copy_bits(&self, range: impl RangeBounds<usize>) -> Self
pub fn copy_bits(&self, range: impl RangeBounds<usize>) -> Self
Copy bits and return a new InternalKey
Trait Implementations§
Source§impl<const N: usize> BorshDeserialize for InternalKey<N>
impl<const N: usize> BorshDeserialize for InternalKey<N>
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self>
Source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
Source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl<const N: usize> BorshSerialize for InternalKey<N>
impl<const N: usize> BorshSerialize for InternalKey<N>
Source§impl<const N: usize> Clone for InternalKey<N>
impl<const N: usize> Clone for InternalKey<N>
Source§fn clone(&self) -> InternalKey<N>
fn clone(&self) -> InternalKey<N>
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<const N: usize> Debug for InternalKey<N>
impl<const N: usize> Debug for InternalKey<N>
Source§impl<const N: usize> From<InternalKey<N>> for [u8; N]
impl<const N: usize> From<InternalKey<N>> for [u8; N]
Source§fn from(v: InternalKey<N>) -> Self
fn from(v: InternalKey<N>) -> Self
Converts to this type from the input type.
Source§impl<const N: usize> Hash for InternalKey<N>
impl<const N: usize> Hash for InternalKey<N>
Source§impl<const N: usize> Ord for InternalKey<N>
impl<const N: usize> Ord for InternalKey<N>
Source§fn cmp(&self, other: &InternalKey<N>) -> Ordering
fn cmp(&self, other: &InternalKey<N>) -> 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<const N: usize> PartialEq for InternalKey<N>
impl<const N: usize> PartialEq for InternalKey<N>
Source§impl<const N: usize> PartialOrd for InternalKey<N>
impl<const N: usize> PartialOrd for InternalKey<N>
impl<const N: usize> Copy for InternalKey<N>
impl<const N: usize> Eq for InternalKey<N>
impl<const N: usize> StructuralPartialEq for InternalKey<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for InternalKey<N>
impl<const N: usize> RefUnwindSafe for InternalKey<N>
impl<const N: usize> Send for InternalKey<N>
impl<const N: usize> Sync for InternalKey<N>
impl<const N: usize> Unpin for InternalKey<N>
impl<const N: usize> UnwindSafe for InternalKey<N>
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