Try_v2
Provides a derive macro for Try (try_trait_v2)
Also enables inter-conversion from Result<T, E> where E: Into::into(Self)
and back where E: From::from<Self<!>>
Requires
- nightly or
RUSTC_BOOTSTRAP = 1 #![feature(never_type)]#![feature(try_trait_v2)]
Limitations on the annotated type
- must be an
enum - must have at least one generic type
- the first generic type must be the
Outputtype (produced when not short circuiting) - the output variant (does not short-circuit) must be the first variant and store the output type as the only unnamed field
See the full documentation for specifics on the generated code.
Example Usage
use ;
// Basic short circuiting thanks to `#[derive(Try)]`
assert!;
// Conversion from std::result::Result thanks to `#[derive(Try_ConvertResult)]`
assert!;
MSRV
1.85.1 if you are walking the grey-zone between stable and nightly via RUSTC_BOOTSTRAP
Currently untested (may work, may not ...)
whereclauses- storing
Fns in variants