pub type ConstructorResult<T> = Result<T, LangError>;
The Result type for ink! constructors.
Result
enum ConstructorResult<T> { Ok(T), Err(LangError), }
Contains the success value
Contains the error value