defmt 1.1.0

A highly efficient logging framework that targets resource-constrained devices, like microcontrollers
Documentation
1
2
3
4
5
6
7
use super::*;

impl Format for core::fmt::Error {
    fn format(&self, fmt: Formatter) {
        crate::write!(fmt, "fmt::Error")
    }
}