[][src]Enum mandos::StepRaw

pub enum StepRaw {
    ExternalSteps {
        path: String,
    },
    SetState {
        comment: Option<String>,
        accounts: BTreeMap<String, AccountRaw>,
        new_addresses: Vec<NewAddressRaw>,
        block_hashes: Vec<ValueSubTree>,
        previous_block_info: Option<BlockInfoRaw>,
        current_block_info: Option<BlockInfoRaw>,
    },
    ScCall {
        tx_id: String,
        comment: Option<String>,
        tx: TxCallRaw,
        expect: Option<TxExpectRaw>,
    },
    ScDeploy {
        tx_id: String,
        comment: Option<String>,
        tx: TxDeployRaw,
        expect: Option<TxExpectRaw>,
    },
    Transfer {
        tx_id: String,
        comment: Option<String>,
        tx: TxTransferRaw,
    },
    ValidatorReward {
        tx_id: String,
        comment: Option<String>,
        tx: TxValidatorRewardRaw,
    },
    CheckState {
        comment: Option<String>,
        accounts: CheckAccountsRaw,
    },
    DumpState {
        comment: Option<String>,
    },
}

Variants

ExternalSteps

Fields of ExternalSteps

path: String
SetState

Fields of SetState

comment: Option<String>accounts: BTreeMap<String, AccountRaw>new_addresses: Vec<NewAddressRaw>block_hashes: Vec<ValueSubTree>previous_block_info: Option<BlockInfoRaw>current_block_info: Option<BlockInfoRaw>
ScCall

Fields of ScCall

tx_id: Stringcomment: Option<String>tx: TxCallRawexpect: Option<TxExpectRaw>
ScDeploy

Fields of ScDeploy

tx_id: Stringcomment: Option<String>tx: TxDeployRawexpect: Option<TxExpectRaw>
Transfer

Fields of Transfer

tx_id: Stringcomment: Option<String>tx: TxTransferRaw
ValidatorReward

Fields of ValidatorReward

tx_id: Stringcomment: Option<String>tx: TxValidatorRewardRaw
CheckState

Fields of CheckState

comment: Option<String>accounts: CheckAccountsRaw
DumpState

Fields of DumpState

comment: Option<String>

Trait Implementations

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

impl InterpretableFrom<StepRaw> for Step[src]

impl Serialize for StepRaw[src]

Auto Trait Implementations

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> 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, 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.