1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! Rust macro crate to automatically generate conversions from variant types into the target enum.
//!
//! This crate requires Rust 1.45 or above to compile on stable.
//!
//! # Examples
//!
//! ```rust
//! use from_variants::FromVariants;
//!
//! #[derive(Debug, Clone, PartialEq, Eq, FromVariants)]
//! pub enum Lorem {
//!     Str(String),
//!     Num(u16),
//! }
//!
//! assert_eq!(Lorem::Num(10), Lorem::from(10));
//! ```
//!
//! You can skip variants to avoid type collisions:
//!
//! ```rust
//! use from_variants::FromVariants;
//!
//! #[derive(Debug, Clone, PartialEq, Eq, FromVariants)]
//! pub enum Ipsum {
//!     Hello(String),
//!
//!     #[from_variants(skip)]
//!     Goodbye(String),
//! }
//!
//! assert_eq!(Ipsum::Hello("John".to_string()), Ipsum::from("John".to_string()));
//! ```
//!
//! # Features
//! * **Variant opt-out**: To skip a variant, add `#[from_variants(skip)]` to that variant.
//! * **Conversion opt-in**: Use `#[from_variants(into)]` on an enum or variant to generate conversions
//!   that will automatically convert - for example, accepting a `&str` for a `String` variant.
//!   This must be used sparingly to avoid generating conflicting impls.
//! * **no_std support**: Generated conversions do not depend on the standard library.

#![no_std]

#[allow(unused_imports)]
pub use from_variants_impl::*;

#[doc(hidden)]
pub mod export {
    pub use ::core::convert::From;
    pub use ::core::convert::Into;
}