pyenum-derive 0.0.3

#[derive(PyEnum)] procedural macro for the `pyenum` crate.
Documentation
1
2
3
4
5
6
7
8
use pyenum::PyEnum;

#[derive(Clone, Copy, PyEnum)]
pub enum Bad<T> {
    A(std::marker::PhantomData<T>),
}

fn main() {}