Closed alpha-tango-kilo closed 5 months ago
My enum:
#[derive(Debug, Clone, PartialEq, IsVariant)] pub enum Value<'a> { Array(Array<'a>), Dictionary(Dictionary<'a>), Boolean(bool), Data(Data<'a>), Date(Date), Float(f64), Integer(Integer), Real(f64), String(&'a str), Uid(Uid), }
cargo expand shows this:
cargo expand
Which is also what appears in the generated (local) documentation:
Not sure if this is an edge case I've hit or just something no one has spotted previously
If you can point me in the approximate direction I can probably write & PR a fix, looks like some quote! tomfoolery
quote!
My enum:
cargo expand
shows this:Which is also what appears in the generated (local) documentation:
Not sure if this is an edge case I've hit or just something no one has spotted previously
If you can point me in the approximate direction I can probably write & PR a fix, looks like some
quote!
tomfoolery