quick_from 0.1.0

A derive macro for quickly implementing From on on enum variants that wrap other types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "quick_from"
version = "0.1.0"
edition = "2018"
authors = ["ear7h"]
license-file = "LICENSE_MIT_ACKNOWLEDGE"
description = "A derive macro for quickly implementing From on on enum variants that wrap other types."
repository = "https://github.com/ear7h/quick-from"
keywords = ["derive", "macro"]
categories = ["rust-patterns"]

[lib]
proc-macro = true

[dependencies]
syn = "1.0"
quote = "1.0"
proc-macro2 = "1.0"