Struct trie_db::NibbleVec

source ·
pub struct NibbleVec { /* private fields */ }
Expand description

Owning, nibble-oriented byte vector. Counterpart to NibbleSlice. Nibbles are always left aligned, so making a NibbleVec from a NibbleSlice can get costy.

Implementations§

source§

impl NibbleVec

source

pub fn new() -> Self

Make a new NibbleVec.

source

pub fn len(&self) -> usize

Length of the NibbleVec.

source

pub fn is_empty(&self) -> bool

Returns true if NibbleVec has zero length.

source

pub fn at(&self, idx: usize) -> u8

Try to get the nibble at the given offset.

source

pub fn push(&mut self, nibble: u8)

Push a nibble onto the NibbleVec. Ignores the high 4 bits.

source

pub fn pop(&mut self) -> Option<u8>

Try to pop a nibble off the NibbleVec. Fails if len == 0.

source

pub fn drop_lasts(&mut self, n: usize)

Remove then n last nibbles in a faster way than popping n times.

source

pub fn as_prefix(&self) -> Prefix<'_>

Get Prefix representation of this NibbleVec.

source

pub fn append(&mut self, v: &NibbleVec)

Append another NibbleVec. Can be slow (alignement of second vec).

source

pub fn append_partial(&mut self, (start_byte, sl): Partial<'_>)

Append a Partial. Can be slow (alignement of partial).

source

pub fn inner(&self) -> &[u8]

Get the underlying byte slice.

source

pub fn clear(&mut self)

clear

source

pub fn as_nibbleslice(&self) -> Option<NibbleSlice<'_>>

Try to treat this NibbleVec as a NibbleSlice. Works only if there is no padding.

source

pub fn starts_with(&self, other: &Self) -> bool

Do we start with the same nibbles as the whole of them?

source

pub fn right_iter<'a>(&'a self) -> impl Iterator<Item = u8> + 'a

Return an iterator over Partial bytes representation.

Trait Implementations§

source§

impl Clone for NibbleVec

source§

fn clone(&self) -> NibbleVec

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for NibbleVec

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for NibbleVec

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<&NibbleVec> for NodeKey

source§

fn from(nibble: &NibbleVec) -> NodeKey

Converts to this type from the input type.
source§

impl<'a> From<NibbleSlice<'a>> for NibbleVec

source§

fn from(s: NibbleSlice<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> PartialEq<NibbleVec> for NibbleSlice<'a>

source§

fn eq(&self, other: &NibbleVec) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<NibbleVec> for NibbleVec

source§

fn eq(&self, other: &NibbleVec) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for NibbleVec

source§

impl StructuralEq for NibbleVec

source§

impl StructuralPartialEq for NibbleVec

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> MaybeDebug for Twhere T: Debug,