Type Alias polkadot_sdk_frame::runtime::apis::Result
pub type Result = Result<(), String>;
Expand description
The result type alias, used in build methods. Err
contains formatted error message.
Aliased Type§
enum Result {
Ok(()),
Err(String),
}