pub trait ResultExplodeExt<T> {
    fn y(self) -> T;
    fn did(self, msg: &'static str) -> Result<T>;
}

Required Methods

Implementors