Enum iota_stronghold::ProcResult[][src]

pub enum ProcResult {
    SLIP10Generate(StatusMessage),
    SLIP10Derive(ResultMessage<ChainCode>),
    BIP39Recover(StatusMessage),
    BIP39Generate(StatusMessage),
    BIP39MnemonicSentence(ResultMessage<String>),
    Ed25519PublicKey(ResultMessage<[u8; 32]>),
    Ed25519Sign(ResultMessage<[u8; 64]>),
    Error(String),
}

A Procedure return result type. Contains the different return values for the Procedure type calls used with Stronghold.runtime_exec(...).

Variants

SLIP10Generate(StatusMessage)

Return from generating a SLIP10 seed.

SLIP10Derive(ResultMessage<ChainCode>)

Returns the public key derived from the SLIP10Derive call.

BIP39Recover(StatusMessage)

BIP39Recover return value.

BIP39Generate(StatusMessage)

BIP39Generate return value.

BIP39MnemonicSentence(ResultMessage<String>)

BIP39MnemonicSentence return value. Returns the mnemonic sentence for the corresponding seed.

Ed25519PublicKey(ResultMessage<[u8; 32]>)

Return value for Ed25519PublicKey. Returns an Ed25519 public key.

Ed25519Sign(ResultMessage<[u8; 64]>)

Return value for Ed25519Sign. Returns an Ed25519 signature.

Error(String)

Generic Error return message.

Trait Implementations

impl Clone for ProcResult[src]

impl Debug for ProcResult[src]

impl<'de> Deserialize<'de> for ProcResult[src]

impl Serialize for ProcResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ActorArgs for T where
    T: 'static + Clone + Send + Sync
[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Message for T where
    T: 'static + Debug + Clone + Send
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

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.

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