pub trait IoToShellInstallError<Ok> {
    // Required method
    fn context(self, f: &dyn Fn() -> String) -> Result<Ok, ShellInstallError>;
}

Required Methods§

source

fn context(self, f: &dyn Fn() -> String) -> Result<Ok, ShellInstallError>

Implementations on Foreign Types§

source§

impl<Ok> IoToShellInstallError<Ok> for Result<Ok, Error>

source§

fn context(self, f: &dyn Fn() -> String) -> Result<Ok, ShellInstallError>

Implementors§