We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90f09e0 commit c748bdbCopy full SHA for c748bdb
defmt/src/impls/core_/fmt.rs
@@ -0,0 +1,7 @@
1
+use super::*;
2
+
3
+impl Format for core::fmt::Error {
4
+ fn format(&self, fmt: Formatter) {
5
+ crate::write!(fmt, "fmt::Error")
6
+ }
7
+}
defmt/src/impls/core_/mod.rs
@@ -8,6 +8,7 @@
8
mod alloc_;
9
mod array;
10
mod cell;
11
+mod fmt;
12
#[cfg(feature = "ip_in_core")]
13
mod net;
14
mod num;
0 commit comments