Type Alias cmd_lib::FunResult

source ·
pub type FunResult = Result<String>;
Expand description

Return type for run_fun!() macro.

Aliased Type§

enum FunResult {
    Ok(String),
    Err(Error),
}

Variants§

§1.0.0

Ok(String)

Contains the success value

§1.0.0

Err(Error)

Contains the error value