type InsResult = Result<(), Cow<'static, str>>;
enum InsResult { Ok(()), Err(Cow<'static, str>), }
Contains the success value
Contains the error value