[][src]Enum substrate_primitives::crypto::DeriveJunction

pub enum DeriveJunction {
    Soft([u8; 32]),
    Hard([u8; 32]),
}

A since derivation junction description. It is the single parameter used when creating a new secret key from an existing secret key and, in the case of SoftRaw and SoftIndex a new public key from an existing public key.

Variants

Soft([u8; 32])

Soft (vanilla) derivation. Public keys have a correspondent derivation.

Hard([u8; 32])

Hard ("hardened") derivation. Public keys do not have a correspondent derivation.

Methods

impl DeriveJunction[src]

pub fn soften(self) -> Self[src]

Consume self to return a soft derive junction with the same chain code.

pub fn harden(self) -> Self[src]

Consume self to return a hard derive junction with the same chain code.

pub fn soft<T: Encode>(index: T) -> Self[src]

Create a new soft (vanilla) DeriveJunction from a given, encodable, value.

If you need a hard junction, use hard().

pub fn hard<T: Encode>(index: T) -> Self[src]

Create a new hard (hardened) DeriveJunction from a given, encodable, value.

If you need a soft junction, use soft().

pub fn unwrap_inner(self) -> [u8; 32][src]

Consume self to return the chain code.

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

Get a reference to the inner junction id.

pub fn is_soft(&self) -> bool[src]

Return true if the junction is soft.

pub fn is_hard(&self) -> bool[src]

Return true if the junction is hard.

Trait Implementations

impl Eq for DeriveJunction[src]

impl Clone for DeriveJunction[src]

impl PartialEq<DeriveJunction> for DeriveJunction[src]

impl<T: AsRef<str>> From<T> for DeriveJunction[src]

impl Copy for DeriveJunction[src]

impl Hash for DeriveJunction[src]

impl Debug for DeriveJunction[src]

impl Encode for DeriveJunction[src]

impl Decode for DeriveJunction[src]

Auto Trait Implementations

Blanket Implementations

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<S> Codec for S where
    S: Encode + Decode
[src]

impl<T> KeyedVec for T where
    T: Codec
[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> MaybeDebug for T where
    T: Debug
[src]