[][src]Struct ibc_proto::LeafOp

pub struct LeafOp {
    pub hash: i32,
    pub prehash_key: i32,
    pub prehash_value: i32,
    pub length: i32,
    pub prefix: Vec<u8>,
}

LeafOp represents the raw key-value data we wish to prove, and must be flexible to represent the internal transformation from the original key-value pairs into the basis hash, for many existing merkle trees.

key and value are passed in. So that the signature of this operation is: leafOp(key, value) -> output

To process this, first prehash the keys and values if needed (ANY means no hash in this case): hkey = prehashKey(key) hvalue = prehashValue(value)

Then combine the bytes, and hash it output = hash(prefix || length(hkey) || hkey || length(hvalue) || hvalue)

Fields

hash: i32prehash_key: i32prehash_value: i32length: i32prefix: Vec<u8>

prefix is a fixed bytes that may optionally be included at the beginning to differentiate a leaf node from an inner node.

Implementations

impl LeafOp[src]

pub fn hash(&self) -> HashOp[src]

Returns the enum value of hash, or the default if the field is set to an invalid enum value.

pub fn set_hash(&mut self, value: HashOp)[src]

Sets hash to the provided enum value.

pub fn prehash_key(&self) -> HashOp[src]

Returns the enum value of prehash_key, or the default if the field is set to an invalid enum value.

pub fn set_prehash_key(&mut self, value: HashOp)[src]

Sets prehash_key to the provided enum value.

pub fn prehash_value(&self) -> HashOp[src]

Returns the enum value of prehash_value, or the default if the field is set to an invalid enum value.

pub fn set_prehash_value(&mut self, value: HashOp)[src]

Sets prehash_value to the provided enum value.

pub fn length(&self) -> LengthOp[src]

Returns the enum value of length, or the default if the field is set to an invalid enum value.

pub fn set_length(&mut self, value: LengthOp)[src]

Sets length to the provided enum value.

Trait Implementations

impl Clone for LeafOp[src]

impl Debug for LeafOp[src]

impl Default for LeafOp[src]

impl Message for LeafOp[src]

impl PartialEq<LeafOp> for LeafOp[src]

impl StructuralPartialEq for LeafOp[src]

Auto Trait Implementations

impl RefUnwindSafe for LeafOp

impl Send for LeafOp

impl Sync for LeafOp

impl Unpin for LeafOp

impl UnwindSafe for LeafOp

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.