try_v2 0.3.3

Provides a derive macro for `Try` ([try_trait_v2](https://rust-lang.github.io/rfcs/3058-try-trait-v2.html))
Documentation
error: Try can only be derived for an enum
 --> tests/compilation/fail_Struct.rs:6:10
  |
6 | #[derive(Try, Try_ConvertResult)]
  |          ^^^
  |
help: not an enum
 --> tests/compilation/fail_Struct.rs:7:1
  |
7 | struct Struct;
  | ^^^^^^
  = note: this error originates in the derive macro `Try` (in Nightly builds, run with -Z macro-backtrace for more info)

error: Try can only be derived for an enum
 --> tests/compilation/fail_Struct.rs:6:15
  |
6 | #[derive(Try, Try_ConvertResult)]
  |               ^^^^^^^^^^^^^^^^^
  |
help: not an enum
 --> tests/compilation/fail_Struct.rs:7:1
  |
7 | struct Struct;
  | ^^^^^^
  = note: this error originates in the derive macro `Try_ConvertResult` (in Nightly builds, run with -Z macro-backtrace for more info)