1 2 3 4 5 6 7
fn example() -> Result<u32, Error> { let first = one()?; let second = two()?; let third = three()?; Ok(first + second + third) }