[][src]Struct lnpbp::rgb::contract::nodes::NodeId

pub struct NodeId(_);

Unique node (genesis, extensions & state transition) identifier equivalent to the commitment hash

Implementations

impl NodeId[src]

pub fn from_hash(inner: Hash<NodeIdTag>) -> NodeId[src]

Create this type from the inner hash type.

pub fn as_hash(&self) -> Hash<NodeIdTag>[src]

Convert this type into the inner hash type.

Trait Implementations

impl AsRef<[u8]> for NodeId[src]

impl Borrow<[u8]> for NodeId[src]

impl Clone for NodeId[src]

impl CommitEncodeWithStrategy for NodeId[src]

impl Copy for NodeId[src]

impl Debug for NodeId[src]

impl Default for NodeId[src]

impl Deref for NodeId[src]

type Target = [u8]

The resulting type after dereferencing.

impl Display for NodeId[src]

impl Eq for NodeId[src]

impl From<Hash<NodeIdTag>> for NodeId[src]

impl From<NodeId> for Hash<NodeIdTag>[src]

impl FromStr for NodeId[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for NodeId[src]

impl Hash for NodeId[src]

type Engine = <Hash<NodeIdTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions. Read more

type Inner = <Hash<NodeIdTag> as Hash>::Inner

The byte array that represents the hash internally

impl Index<Range<usize>> for NodeId[src]

type Output = [u8]

The returned type after indexing.

impl Index<RangeFrom<usize>> for NodeId[src]

type Output = [u8]

The returned type after indexing.

impl Index<RangeFull> for NodeId[src]

type Output = [u8]

The returned type after indexing.

impl Index<RangeTo<usize>> for NodeId[src]

type Output = [u8]

The returned type after indexing.

impl Index<usize> for NodeId[src]

type Output = u8

The returned type after indexing.

impl LowerHex for NodeId[src]

impl Ord for NodeId[src]

impl PartialEq<NodeId> for NodeId[src]

impl PartialOrd<NodeId> for NodeId[src]

impl Strategy for NodeId[src]

impl StructuralEq for NodeId[src]

impl StructuralPartialEq for NodeId[src]

Auto Trait Implementations

impl RefUnwindSafe for NodeId

impl Send for NodeId

impl Sync for NodeId

impl Unpin for NodeId

impl UnwindSafe for NodeId

Blanket Implementations

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

impl<T> Base32Len for T where
    T: AsRef<[u8]>, 
[src]

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

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

impl<'f, T> CheckBase32<Vec<u5>> for T where
    T: AsRef<[u8]>, 
[src]

type Err = Error

Error type if conversion fails

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

impl<T> FromHex for T where
    T: Hash
[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToBase32 for T where
    T: AsRef<[u8]>, 
[src]

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]

impl<T> ToHex for T where
    T: LowerHex
[src]

pub fn to_hex(&self) -> String[src]

Outputs the hash in hexadecimal form

impl<T> ToHex for T where
    T: LowerHex
[src]

pub fn to_hex(&self) -> String[src]

Outputs the hash in hexadecimal form

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

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