The Encode macro fails for this enum because in the generated code the following is produced `encode(encoder, encoder)` ```rust enum Example { Example { encoder: String }, } ```
The Encode macro fails for this enum because in the generated code the following is produced
encode(encoder, encoder)