CellDescriptor

Struct CellDescriptor 

Source
#[repr(C)]
pub struct CellDescriptor { pub d1: u8, pub d2: u8, }
Expand description

Tightly packed info about a cell.

Fields§

§d1: u8

First descriptor byte with a generic info about cell.

§d2: u8

Second descriptor byte with a packed data size.

Implementations§

Source§

impl CellDescriptor

Source

pub const REF_COUNT_MASK: u8 = 7u8

Bit mask to store the number of references in the descriptor.

Source

pub const IS_EXOTIC_MASK: u8 = 8u8

Bit mask to store the is_exotic flag in the descriptor.

Source

pub const STORE_HASHES_MASK: u8 = 16u8

Bit mask to store the store_hashes flag in the descriptor.

Source

pub const LEVEL_MASK: u8 = 224u8

de Brujn level presence mask in the descriptor.

Source

pub const fn compute_d1( level_mask: LevelMask, is_exotic: bool, ref_count: u8, ) -> u8

Computes d1 descriptor byte from parts

Source

pub const fn compute_d2(bit_len: u16) -> u8

Computes d2 descriptor byte from cell length in bits

Source

pub const fn new(bytes: [u8; 2]) -> Self

Constructs cell descriptor from descriptor bytes.

Source

pub fn cell_type(self) -> CellType

Computes cell type.

Source

pub const fn reference_count(self) -> u8

Computes child cell count.

Source

pub const fn hash_count(self) -> u8

Computes hash count.

NOTE: Guaranteed to be in range 1..=4.

Source

pub const fn is_exotic(self) -> bool

Returns whether the cell is not Ordinary.

Source

pub const fn is_pruned_branch(self) -> bool

Returns whether this cell is a pruned branch cell

Source

pub const fn is_merkle(self) -> bool

Returns whether this cell type is Merkle proof or Merkle update.

Source

pub const fn is_absent(self) -> bool

Returns whether this cell refers to some external data.

Source

pub const fn store_hashes(self) -> bool

Returns whether this cell should store hashes in data.

Source

pub const fn level_mask(self) -> LevelMask

Computes level mask.

Source

pub const fn is_aligned(self) -> bool

Returns whether this cell’s data is 8-bit aligned.

Source

pub const fn byte_len(self) -> u8

Returns this cell’s data length in bytes.

Trait Implementations§

Source§

impl Clone for CellDescriptor

Source§

fn clone(&self) -> CellDescriptor

Returns a duplicate 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 CellDescriptor

Source§

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

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

impl Hash for CellDescriptor

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Copy for CellDescriptor

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> EquivalentRepr<T> for T