Vaalla42 opened a new pull request, #205:
URL: https://github.com/apache/avro-rs/pull/205

   Improve the `AvroSchema` macro to support `#[avro(rename = "new_name")]` for 
enum variants.
   
   Example:
   ```
   enum A {
       #[avro(rename = "A3")]
       Item1,
   }
   ```
   will generate
   
   ```
   Enum(EnumSchema { name: Name { name: "A", namespace: None }, aliases: None, 
doc: None, symbols: ["A3"], default: None, attributes: {} })
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@avro.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to