Git Product home page Git Product logo

Comments (7)

dj8yfo avatar dj8yfo commented on July 18, 2024 2

@cybersoulK , this is probably due to an optimization from compiler, where it makes single-variant enum zero-size.
rust-lang/rust#37649 .
Can likely be helped with adding #[repr(u8)] attribute to the definition or just adding another variant.

from borsh-rs.

cybersoulK avatar cybersoulK commented on July 18, 2024 1

oh, congrats coming a long way with borsh 1.2!

from borsh-rs.

dj8yfo avatar dj8yfo commented on July 18, 2024

@cybersoulK , we've decided that using zero-sized types as keys in HashSet/HashMap is impractical, as there cannot be more that one instance of the type (and, transitively, more than one key in collection of this type).

Please share a minimal excerpt from your code to illustrate how this case is useful for you.
Ideally, if you shared it as a compilable repo with a previous version of borsh.

from borsh-rs.

cybersoulK avatar cybersoulK commented on July 18, 2024

honestly i am having a hard time replicating it manually.

I thought it was

struct Marker;
enum Enum {
    Marker(Marker)
    SomethingElse(f32, ...)
}
Vec<Enum>

but i am able to run that successfuly, is there a way to print the exact type that's causing the issue?

from borsh-rs.

cybersoulK avatar cybersoulK commented on July 18, 2024

yep, i cannot see any Hashmap Key, or Vec Value that is an empty struct. i looked 10 times at the data

from borsh-rs.

cybersoulK avatar cybersoulK commented on July 18, 2024

Ok, i got it:

#[Component]
pub struct Cooldowns(pub HashMap<Skill, Interval>);

#[Component]
pub enum Skill {
    Dash,
}

where right now, Skill is only one variant.

I feel relieved that my assumption of the markers was wrong.
But still, why ban an enum from being a key, if it only has one variant?

from borsh-rs.

cybersoulK avatar cybersoulK commented on July 18, 2024

Thank you ❤️, #[repr(u8)] should be good enough.
If there was anything can could be done is Borsh Derive to correct it automatically, would be nice.

from borsh-rs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.