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
15
16
fn main() {}

#[derive(defmt::Format)]
#[defmt(transparent)]
enum Empty {}

#[derive(defmt::Format)]
#[defmt(transparent)]
struct Unit;

#[derive(defmt::Format)]
#[defmt(transparent)]
enum UnitVariants {
    Foo,
    Bar,
}