Skip to content
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

#[derive(IntoBytes)] on generic enums emits code with an arity error. #1642

Open
jswrenn opened this issue Sep 12, 2024 · 0 comments
Open

#[derive(IntoBytes)] on generic enums emits code with an arity error. #1642

jswrenn opened this issue Sep 12, 2024 · 0 comments
Labels

Comments

@jswrenn
Copy link
Collaborator

jswrenn commented Sep 12, 2024

This:

#[derive(IntoBytes)]
#[repr(u8)]
enum MyEnum<T> {
    Foo(T),
}

...expands to this:

unsafe impl<T> ::zerocopy::IntoBytes for MyEnum<T>
where
    T: ::zerocopy::IntoBytes,
    ::zerocopy::util::macro_util::HasPadding<
        MyEnum,
        {
            #[repr(u8)]
            #[allow(dead_code)]
            enum ___ZerocopyTag {
                Foo,
            }
            false
                || ::zerocopy::util::macro_util::core_reexport::mem::size_of::<MyEnum>()
                    != (::zerocopy::util::macro_util::core_reexport::mem::size_of::<
                        ___ZerocopyTag,
                    >()
                        + ::zerocopy::util::macro_util::core_reexport::mem::size_of::<
                            T,
                        >())
        },
    >: ::zerocopy::util::macro_util::ShouldBe<false>,
{
    fn only_derive_is_allowed_to_implement_this_trait() {}
}

...in which MyEnum is unparameterized in the where bound. Consequently, a generic arity error is emitted.

@jswrenn jswrenn added the bug Something isn't working label Sep 16, 2024
@joshlf joshlf added blocking-next-release This issue should be resolved before we release on crates.io blocking-next-release-publicization and removed blocking-next-release This issue should be resolved before we release on crates.io labels Sep 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants