pub trait ResultExt<T> {
// Required methods
fn or_throw_msg(self, ctx: &Ctx<'_>, msg: &str) -> Result<T>;
fn or_throw(self, ctx: &Ctx<'_>) -> Result<T>;
}
pub trait ResultExt<T> {
// Required methods
fn or_throw_msg(self, ctx: &Ctx<'_>, msg: &str) -> Result<T>;
fn or_throw(self, ctx: &Ctx<'_>) -> Result<T>;
}