usedeluxe::*;//// VariantAttribute
///// Variant-level attribute for `#[derive(Resolve)]`.
////// ```
/// #[derive(Resolve)]
/// enum MyEnum {
/// #[resolve(...)] // this
/// MyVariant(...)
/// }
/// ```
#[derive(Clone, ExtractAttributes)]#[deluxe(attributes(resolve))]pubstructVariantAttribute{/// Map key used to select the variant.
////// If not present, the key will be the variant name.
pubkey:Option<syn::Expr>,
/// Will try to resolve to just this variant first as a "single" notation.
////// Can only be used on one variant.
#[deluxe(default)]pubsingle:bool,
}