Type Definition qu::ick_use::Result

source · []
pub type Result<T = (), E = Error> = Result<T, E>;
Expand description

Like anyhow::Result, but defaults the Ok case to ().

You can use this as a replacement for std::result::Result as it functions exactly the same when supplied with 2 type arguments.