pub type DispatchErrorWithPostInfo = DispatchErrorWithPostInfo<PostDispatchInfo>;Expand description
The error type contained in a DispatchResultWithPostInfo.
Aliased Type§
struct DispatchErrorWithPostInfo {
pub post_info: PostDispatchInfo,
pub error: DispatchError,
}Fields§
§post_info: PostDispatchInfoAdditional information about the Dispatchable which is only known post dispatch.
error: DispatchErrorThe actual DispatchResult indicating whether the dispatch was successful.