pub fn just_try<F, T, E>(action: F) -> Result<T, E>where F: FnOnce() -> Result<T, E>,
Just returns the Result, so you can easily gather ? uses.
Result
?