[][src]Type Definition cosmwasm_std::HandleResult

type HandleResult<U = Empty> = Result<HandleResponse<U>, StdError>;
👎 Deprecated since 0.12.1:

HandleResult is deprecated because it uses StdError, which should be replaced with custom errors in CosmWasm 0.11+. Replace this with Result<HandleResponse, StdError> or Result<HandleResponse<U>, StdError> and consider migrating to custom errors from there.