pub fn just_try<F, T, E>(action: F) -> Result<T, E>
where F: FnOnce() -> Result<T, E>,
Expand description

Just returns the Result, so you can easily gather ? uses.