tryfromfail
Custom derive failing TryFrom
implementations for a set of target types.
Returns the original value as Err(value)
.
```rust
extern crate tryfromfail;
use std::convert::TryInto;
struct SomeType {}
struct OtherType {}
fn works() {
let val = OtherType {};
let failedtryfrom: Result