defmt 1.1.1

A highly efficient logging framework that targets resource-constrained devices, like microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(defmt::Format)]
#[defmt(transparent)]
enum A {
    Invalid { foo: u8, bar: i8 },
}

#[derive(defmt::Format)]
#[defmt(transparent)]
struct Foo {
    foo: u8,
    bar: i8,
}

fn main() {}