pub enum HandleAnswer {
Show 26 variants Deposit { status: ResponseStatus, }, Redeem { status: ResponseStatus, }, Transfer { status: ResponseStatus, }, Send { status: ResponseStatus, }, BatchTransfer { status: ResponseStatus, }, BatchSend { status: ResponseStatus, }, Burn { status: ResponseStatus, }, RegisterReceive { status: ResponseStatus, }, CreateViewingKey { key: ViewingKey, }, SetViewingKey { status: ResponseStatus, }, IncreaseAllowance { spender: HumanAddr, owner: HumanAddr, allowance: Uint128, }, DecreaseAllowance { spender: HumanAddr, owner: HumanAddr, allowance: Uint128, }, TransferFrom { status: ResponseStatus, }, SendFrom { status: ResponseStatus, }, BatchTransferFrom { status: ResponseStatus, }, BatchSendFrom { status: ResponseStatus, }, BurnFrom { status: ResponseStatus, }, BatchBurnFrom { status: ResponseStatus, }, Mint { status: ResponseStatus, }, BatchMint { status: ResponseStatus, }, AddMinters { status: ResponseStatus, }, RemoveMinters { status: ResponseStatus, }, SetMinters { status: ResponseStatus, }, ChangeAdmin { status: ResponseStatus, }, SetContractStatus { status: ResponseStatus, }, RevokePemit { status: ResponseStatus, },
}

Variants

Deposit

Fields

Redeem

Fields

Transfer

Fields

Send

Fields

BatchTransfer

Fields

BatchSend

Fields

Burn

Fields

RegisterReceive

Fields

CreateViewingKey

Fields

SetViewingKey

Fields

IncreaseAllowance

Fields

spender: HumanAddr
owner: HumanAddr
allowance: Uint128

DecreaseAllowance

Fields

spender: HumanAddr
owner: HumanAddr
allowance: Uint128

TransferFrom

Fields

SendFrom

Fields

BatchTransferFrom

Fields

BatchSendFrom

Fields

BurnFrom

Fields

BatchBurnFrom

Fields

Mint

Fields

BatchMint

Fields

AddMinters

Fields

RemoveMinters

Fields

SetMinters

Fields

ChangeAdmin

Fields

SetContractStatus

Fields

RevokePemit

Fields

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

The name of the generated JSON Schema. Read more

Generates a JSON Schema for this type. Read more

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.