-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new derive: AsVariant #415
Open
crazymerlyn
wants to merge
1
commit into
JelteF:master
Choose a base branch
from
crazymerlyn:as-variant
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+334
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# What `#[derive(AsVariant)]` generates | ||
|
||
When an enum is decorated with `#[derive(AsVariant)]`, for each variant `foo` in | ||
the enum, with fields `(a, b, c, ...)`, a public instance method `as_foo(self) -> Option<(a, b, c, ...)>` is generated. | ||
If you don't want the `as_foo` method generated for a variant you can put the | ||
`#[as_variant(ignore)]` attribute on that variant. | ||
If you want to treat a reference, you can put the `#[as_variant(ref)]` attribute on the enum declaration or that variant, then `as_foo_ref(self) -> Option<(&a, &b, &c, ...)>` will be generated. You can also use mutable references by putting `#[as_variant(ref_mut)]`. | ||
|
||
|
||
|
||
|
||
## Example usage | ||
|
||
```rust | ||
# use derive_more::AsVariant; | ||
# | ||
#[derive(AsVariant)] | ||
#[as_variant(ref)] | ||
enum Maybe<T> { | ||
Just(T), | ||
Nothing | ||
} | ||
|
||
assert_eq!(Maybe::<()>::Nothing.as_nothing(), Some(())); | ||
assert_eq!(Maybe::<()>::Nothing.as_just(), None); | ||
assert_eq!(Maybe::Just(1).as_just(), Some(1)); | ||
assert_eq!((&Maybe::Just(42)).as_just_ref(), Some(&42)); | ||
``` | ||
|
||
|
||
### What is generated? | ||
|
||
The derive in the above example generates code like this: | ||
```rust | ||
# enum Maybe<T> { | ||
# Just(T), | ||
# Nothing | ||
# } | ||
impl<T> Maybe<T>{ | ||
#[must_use] | ||
pub fn as_just(self) -> Option<(T)> { | ||
match self { | ||
Maybe::Just(field_0) => Some((field_0)), | ||
_ => None, | ||
} | ||
} | ||
#[must_use] | ||
pub fn as_just_ref(&self) -> Option<(&T)> { | ||
match self { | ||
Maybe::Just(field_0) => Some((field_0)), | ||
_ => None, | ||
} | ||
} | ||
|
||
#[must_use] | ||
pub fn as_nothing(self) -> Option<()> { | ||
match self { | ||
Maybe::Nothing => Some(()), | ||
_ => None, | ||
} | ||
} | ||
#[must_use] | ||
pub fn as_nothing_ref(&self) -> Option<()> { | ||
match self { | ||
Maybe::Nothing => Some(()), | ||
_ => None, | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,135 @@ | ||||||||||||||||||||||||||||||||||||||||||||||
use crate::utils::{AttrParams, DeriveType, State}; | ||||||||||||||||||||||||||||||||||||||||||||||
use convert_case::{Case, Casing}; | ||||||||||||||||||||||||||||||||||||||||||||||
use proc_macro2::TokenStream; | ||||||||||||||||||||||||||||||||||||||||||||||
use quote::{format_ident, quote}; | ||||||||||||||||||||||||||||||||||||||||||||||
use syn::{DeriveInput, Fields, Result, Type}; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
pub fn expand(input: &DeriveInput, trait_name: &'static str) -> Result<TokenStream> { | ||||||||||||||||||||||||||||||||||||||||||||||
let state = State::with_attr_params( | ||||||||||||||||||||||||||||||||||||||||||||||
input, | ||||||||||||||||||||||||||||||||||||||||||||||
trait_name, | ||||||||||||||||||||||||||||||||||||||||||||||
"as_variant".into(), | ||||||||||||||||||||||||||||||||||||||||||||||
AttrParams { | ||||||||||||||||||||||||||||||||||||||||||||||
enum_: vec!["ignore", "owned", "ref", "ref_mut"], | ||||||||||||||||||||||||||||||||||||||||||||||
variant: vec!["ignore", "owned", "ref", "ref_mut"], | ||||||||||||||||||||||||||||||||||||||||||||||
struct_: vec!["ignore"], | ||||||||||||||||||||||||||||||||||||||||||||||
field: vec!["ignore"], | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
)?; | ||||||||||||||||||||||||||||||||||||||||||||||
assert!( | ||||||||||||||||||||||||||||||||||||||||||||||
state.derive_type == DeriveType::Enum, | ||||||||||||||||||||||||||||||||||||||||||||||
"AsVariant can only be derived for enums", | ||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
let enum_name = &input.ident; | ||||||||||||||||||||||||||||||||||||||||||||||
let (imp_generics, type_generics, where_clause) = input.generics.split_for_impl(); | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
let variant_data = state.enabled_variant_data(); | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
let mut funcs = vec![]; | ||||||||||||||||||||||||||||||||||||||||||||||
for (variant_state, info) in | ||||||||||||||||||||||||||||||||||||||||||||||
Iterator::zip(variant_data.variant_states.iter(), variant_data.infos) | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
let variant = variant_state.variant.unwrap(); | ||||||||||||||||||||||||||||||||||||||||||||||
let fn_name = format_ident!( | ||||||||||||||||||||||||||||||||||||||||||||||
"as_{}", | ||||||||||||||||||||||||||||||||||||||||||||||
variant.ident.to_string().to_case(Case::Snake), | ||||||||||||||||||||||||||||||||||||||||||||||
span = variant.ident.span(), | ||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||
let ref_fn_name = format_ident!( | ||||||||||||||||||||||||||||||||||||||||||||||
"as_{}_ref", | ||||||||||||||||||||||||||||||||||||||||||||||
variant.ident.to_string().to_case(Case::Snake), | ||||||||||||||||||||||||||||||||||||||||||||||
span = variant.ident.span(), | ||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||
let mut_fn_name = format_ident!( | ||||||||||||||||||||||||||||||||||||||||||||||
"as_{}_mut", | ||||||||||||||||||||||||||||||||||||||||||||||
variant.ident.to_string().to_case(Case::Snake), | ||||||||||||||||||||||||||||||||||||||||||||||
span = variant.ident.span(), | ||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||
let variant_ident = &variant.ident; | ||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+34
to
+49
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
let (data_pattern, ret_value, data_types) = get_field_info(&variant.fields); | ||||||||||||||||||||||||||||||||||||||||||||||
let pattern = quote! { #enum_name :: #variant_ident #data_pattern }; | ||||||||||||||||||||||||||||||||||||||||||||||
let doc_owned = format!( | ||||||||||||||||||||||||||||||||||||||||||||||
"Attempts to convert this value to the `{enum_name}::{variant_ident}` variant.\n", | ||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||
let doc_ref = format!( | ||||||||||||||||||||||||||||||||||||||||||||||
"Attempts to convert this reference to the `{enum_name}::{variant_ident}` variant.\n", | ||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||
let doc_mut = format!( | ||||||||||||||||||||||||||||||||||||||||||||||
"Attempts to convert this mutable reference to the `{enum_name}::{variant_ident}` variant.\n", | ||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||
let doc_else = "Returns Some(..) if successful and None if this value is of any other type."; | ||||||||||||||||||||||||||||||||||||||||||||||
let func = quote! { | ||||||||||||||||||||||||||||||||||||||||||||||
#[doc = #doc_owned] | ||||||||||||||||||||||||||||||||||||||||||||||
#[doc = #doc_else] | ||||||||||||||||||||||||||||||||||||||||||||||
#[inline] | ||||||||||||||||||||||||||||||||||||||||||||||
#[must_use] | ||||||||||||||||||||||||||||||||||||||||||||||
pub fn #fn_name(self) -> Option<(#(#data_types),*)> { | ||||||||||||||||||||||||||||||||||||||||||||||
match self { | ||||||||||||||||||||||||||||||||||||||||||||||
#pattern => Some(#ret_value), | ||||||||||||||||||||||||||||||||||||||||||||||
_ => None | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||
let ref_func = quote! { | ||||||||||||||||||||||||||||||||||||||||||||||
#[doc = #doc_ref] | ||||||||||||||||||||||||||||||||||||||||||||||
#[doc = #doc_else] | ||||||||||||||||||||||||||||||||||||||||||||||
#[inline] | ||||||||||||||||||||||||||||||||||||||||||||||
#[must_use] | ||||||||||||||||||||||||||||||||||||||||||||||
pub fn #ref_fn_name(&self) -> Option<(#(&#data_types),*)> { | ||||||||||||||||||||||||||||||||||||||||||||||
match self { | ||||||||||||||||||||||||||||||||||||||||||||||
#pattern => Some(#ret_value), | ||||||||||||||||||||||||||||||||||||||||||||||
_ => None | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||
let mut_func = quote! { | ||||||||||||||||||||||||||||||||||||||||||||||
#[doc = #doc_mut] | ||||||||||||||||||||||||||||||||||||||||||||||
#[doc = #doc_else] | ||||||||||||||||||||||||||||||||||||||||||||||
#[inline] | ||||||||||||||||||||||||||||||||||||||||||||||
#[must_use] | ||||||||||||||||||||||||||||||||||||||||||||||
pub fn #mut_fn_name(&mut self) -> Option<(#(&mut #data_types),*)> { | ||||||||||||||||||||||||||||||||||||||||||||||
match self { | ||||||||||||||||||||||||||||||||||||||||||||||
#pattern => Some(#ret_value), | ||||||||||||||||||||||||||||||||||||||||||||||
_ => None | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||
if info.owned && state.default_info.owned { | ||||||||||||||||||||||||||||||||||||||||||||||
funcs.push(func); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
if info.ref_ && state.default_info.ref_ { | ||||||||||||||||||||||||||||||||||||||||||||||
funcs.push(ref_func); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
if info.ref_mut && state.default_info.ref_mut { | ||||||||||||||||||||||||||||||||||||||||||||||
funcs.push(mut_func); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
let imp = quote! { | ||||||||||||||||||||||||||||||||||||||||||||||
#[allow(unreachable_code)] // omit warnings for `!` and other unreachable types | ||||||||||||||||||||||||||||||||||||||||||||||
#[automatically_derived] | ||||||||||||||||||||||||||||||||||||||||||||||
impl #imp_generics #enum_name #type_generics #where_clause { | ||||||||||||||||||||||||||||||||||||||||||||||
#(#funcs)* | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
Ok(imp) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
fn get_field_info(fields: &Fields) -> (TokenStream, TokenStream, Vec<&Type>) { | ||||||||||||||||||||||||||||||||||||||||||||||
match fields { | ||||||||||||||||||||||||||||||||||||||||||||||
Fields::Named(_) => panic!("cannot extract anonymous records in as_variant"), | ||||||||||||||||||||||||||||||||||||||||||||||
Fields::Unnamed(ref fields) => { | ||||||||||||||||||||||||||||||||||||||||||||||
let (idents, types) = fields | ||||||||||||||||||||||||||||||||||||||||||||||
.unnamed | ||||||||||||||||||||||||||||||||||||||||||||||
.iter() | ||||||||||||||||||||||||||||||||||||||||||||||
.enumerate() | ||||||||||||||||||||||||||||||||||||||||||||||
.map(|(n, it)| (format_ident!("field_{n}"), &it.ty)) | ||||||||||||||||||||||||||||||||||||||||||||||
.unzip::<_, _, Vec<_>, Vec<_>>(); | ||||||||||||||||||||||||||||||||||||||||||||||
(quote! { (#(#idents),*) }, quote! { (#(#idents),*) }, types) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
Fields::Unit => (quote! {}, quote! { () }, vec![]), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,106 @@ | ||||||||||||||||||||||||||||||||||||||||||||||
#![cfg_attr(not(feature = "std"), no_std)] | ||||||||||||||||||||||||||||||||||||||||||||||
#![cfg_attr(nightly, feature(never_type))] | ||||||||||||||||||||||||||||||||||||||||||||||
#![allow(dead_code)] // some code is tested for type checking only | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
use derive_more::AsVariant; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[derive(AsVariant)] | ||||||||||||||||||||||||||||||||||||||||||||||
enum Either<TLeft, TRight> { | ||||||||||||||||||||||||||||||||||||||||||||||
Left(TLeft), | ||||||||||||||||||||||||||||||||||||||||||||||
Right(TRight), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[derive(AsVariant)] | ||||||||||||||||||||||||||||||||||||||||||||||
#[derive(Debug, PartialEq)] | ||||||||||||||||||||||||||||||||||||||||||||||
#[as_variant(ref, ref_mut)] | ||||||||||||||||||||||||||||||||||||||||||||||
enum Maybe<T> { | ||||||||||||||||||||||||||||||||||||||||||||||
Nothing, | ||||||||||||||||||||||||||||||||||||||||||||||
Just(T), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[derive(AsVariant)] | ||||||||||||||||||||||||||||||||||||||||||||||
enum Color { | ||||||||||||||||||||||||||||||||||||||||||||||
Rgb(u8, u8, u8), | ||||||||||||||||||||||||||||||||||||||||||||||
Cmyk(u8, u8, u8, u8), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
/// With lifetime | ||||||||||||||||||||||||||||||||||||||||||||||
#[derive(AsVariant)] | ||||||||||||||||||||||||||||||||||||||||||||||
enum Nonsense<'a, T> { | ||||||||||||||||||||||||||||||||||||||||||||||
Ref(&'a T), | ||||||||||||||||||||||||||||||||||||||||||||||
NoRef, | ||||||||||||||||||||||||||||||||||||||||||||||
#[as_variant(ignore)] | ||||||||||||||||||||||||||||||||||||||||||||||
NoRefIgnored, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[derive(AsVariant)] | ||||||||||||||||||||||||||||||||||||||||||||||
enum WithConstraints<T> | ||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||
T: Copy, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
One(T), | ||||||||||||||||||||||||||||||||||||||||||||||
Two, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[derive(AsVariant)] | ||||||||||||||||||||||||||||||||||||||||||||||
enum KitchenSink<'a, 'b, T1: Copy, T2: Clone> | ||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||
T2: Into<T1> + 'b, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
Left(&'a T1), | ||||||||||||||||||||||||||||||||||||||||||||||
Right(&'b T2), | ||||||||||||||||||||||||||||||||||||||||||||||
OwnBoth(T1, T2), | ||||||||||||||||||||||||||||||||||||||||||||||
Empty, | ||||||||||||||||||||||||||||||||||||||||||||||
NeverMind(), | ||||||||||||||||||||||||||||||||||||||||||||||
NothingToSeeHere(), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
/// Single variant enum | ||||||||||||||||||||||||||||||||||||||||||||||
#[derive(AsVariant)] | ||||||||||||||||||||||||||||||||||||||||||||||
enum Single { | ||||||||||||||||||||||||||||||||||||||||||||||
Value(i32), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[derive(AsVariant)] | ||||||||||||||||||||||||||||||||||||||||||||||
#[derive(Debug, PartialEq)] | ||||||||||||||||||||||||||||||||||||||||||||||
#[as_variant(ref, ref_mut)] | ||||||||||||||||||||||||||||||||||||||||||||||
enum Tuple<T> { | ||||||||||||||||||||||||||||||||||||||||||||||
None, | ||||||||||||||||||||||||||||||||||||||||||||||
Single(T), | ||||||||||||||||||||||||||||||||||||||||||||||
Double(T, T), | ||||||||||||||||||||||||||||||||||||||||||||||
Triple(T, T, T), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[test] | ||||||||||||||||||||||||||||||||||||||||||||||
pub fn test_as_variant() { | ||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(Maybe::<()>::Nothing.as_nothing(), Some(())); | ||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(Maybe::Just(1).as_just_ref(), Some(&1)); | ||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(Maybe::Just(42).as_just_mut(), Some(&mut 42)); | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(Maybe::<()>::Nothing.as_just(), None); | ||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(Maybe::Just(1).as_nothing_ref(), None); | ||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(Maybe::Just(42).as_nothing_mut(), None); | ||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+76
to
+82
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Misses a few cases (and rearranged a little):
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[test] | ||||||||||||||||||||||||||||||||||||||||||||||
pub fn test_as_variant_mut() { | ||||||||||||||||||||||||||||||||||||||||||||||
let mut value = Tuple::Double(1, 12); | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if let Some((a, b)) = value.as_double_mut() { | ||||||||||||||||||||||||||||||||||||||||||||||
*a = 9; | ||||||||||||||||||||||||||||||||||||||||||||||
*b = 10; | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(value, Tuple::Double(9, 10)); | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[cfg(nightly)] | ||||||||||||||||||||||||||||||||||||||||||||||
mod never { | ||||||||||||||||||||||||||||||||||||||||||||||
use super::*; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
#[derive(AsVariant)] | ||||||||||||||||||||||||||||||||||||||||||||||
enum Enum { | ||||||||||||||||||||||||||||||||||||||||||||||
Tuple(!), | ||||||||||||||||||||||||||||||||||||||||||||||
TupleMulti(i32, !), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is missing from the "full" feature flag below.