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§
Sourcetype HostRef: HostRef + EntryPointsCallerProvider + HasIdent
type HostRef: HostRef + EntryPointsCallerProvider + HasIdent
The host reference type.
Sourcetype ContractRef: ContractRef
type ContractRef: ContractRef
The contract reference type.
Sourcetype UpgradeArgs: UpgradeArgs
type UpgradeArgs: UpgradeArgs
The upgrade args type.