// Copyright (c) 2015 macro-attr contributors. // Copyright (c) 2020 Warlock . // // Licensed under the MIT license (see LICENSE or ) or the Apache License, Version 2.0 (see LICENSE of // ), at your option. All // files in the project carrying such notice may not be copied, modified, // or distributed except according to those terms. use enum_derive_2018::EnumFromStr; use macro_attr_2018::macro_attr; macro_attr! { #[derive(Debug, PartialEq, EnumFromStr!)] pub enum Get { Up, /// And Down, /** And */ AllAround } } macro_attr! { #[derive(Debug, PartialEq, EnumFromStr!)] pub enum Degenerate {} } #[test] fn test_next_variant() { use enum_derive_2018::ParseEnumError; assert_eq!("Up".parse(), Ok(Get::Up)); assert_eq!("Down".parse(), Ok(Get::Down)); assert_eq!("AllAround".parse(), Ok(Get::AllAround)); assert_eq!("Edgy".parse::(), Err(ParseEnumError)); assert_eq!("Singularity".parse::(), Err(ParseEnumError)); }