OdraContract

Trait OdraContract 

Source
pub trait OdraContract {
    type HostRef: HostRef + EntryPointsCallerProvider + HasIdent;
    type ContractRef: ContractRef;
    type InitArgs: InitArgs;
    type UpgradeArgs: UpgradeArgs;
}
Expand description

The contract trait.

Required Associated Types§

Source

type HostRef: HostRef + EntryPointsCallerProvider + HasIdent

The host reference type.

Source

type ContractRef: ContractRef

The contract reference type.

Source

type InitArgs: InitArgs

The init args type.

Source

type UpgradeArgs: UpgradeArgs

The upgrade args type.

Implementors§