-
-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add support for #[defmt(transparent)]
#937
base: main
Are you sure you want to change the base?
Conversation
2050b83
to
09f5469
Compare
09f5469
to
c5a849e
Compare
Just added the support for generic in the derive tested with #[derive(Format)]
#[defmt(transparent)]
enum Mixed<T: Clone, U> where U: Clone {
Unnamed(T),
Named { foo: u8 },
StructUnnamed(Unnamed),
StructNamed { named: U },
} generated codeimpl<T: Clone, U> defmt::Format for Mixed<T, U>
where
U: Clone,
T: defmt::Format,
U: defmt::Format,
{
fn format(&self, f: defmt::Formatter) {
match &self {
Self::Unnamed { 0: inner } => inner.format(f),
Self::Named { foo: inner } => inner.format(f),
Self::StructUnnamed { 0: inner } => inner.format(f),
Self::StructNamed { named: inner } => inner.format(f),
}
}
} I also took the liberty to add #[derive(defmt::FormatTransparent)] because I intend to use that feature with auto_enums which doesn't appear to support added attributes. |
I think it makes sense for new-types ( |
I added it for 2 reasons,
But the final decision is made by you 👍 |
OK, I'm persuaded. Passing to @Urhengulas for a second opinion. |
ping @Veykril on this one |
Fixes: #934, inspired by https://defmt.ferrous-systems.com/format#newtypes
Here's a proposition implementing a new attribute
#[defmt(transparent)]
for newtypes and enums (where each variant has only one field).I tested using
generated code
Waiting for suggestion's approbation before finishing the PR (docs, changelog, generic super trait requirements etc).