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

§

type Output = T

Should always be Self
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.