File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ derive(Display) /// `From<docs>`
5
5
[ ![ Rust Documentation] ( https://img.shields.io/badge/api-rustdoc-blue.svg )] ( https://docs.rs/displaydoc )
6
6
7
7
This library provides a convenient derive macro for the standard library's
8
- [ ` std ::fmt::Display` ] trait.
8
+ [ ` core ::fmt::Display` ] trait.
9
9
10
- [ `std ::fmt::Display` ] : https://doc.rust-lang.org/std/fmt/trait.Display.html
10
+ [ `core ::fmt::Display` ] : https://doc.rust-lang.org/std/fmt/trait.Display.html
11
11
12
12
``` toml
13
13
[dependencies ]
@@ -57,6 +57,13 @@ pub enum DataStoreError {
57
57
58
58
<br >
59
59
60
+ ## FAQ
61
+
62
+ 1 . ** Is this crate ` no_std ` compatible?**
63
+ * Yes! This crate implements the ` core::fmt::Display ` trait not the ` std::fmt::Display ` trait so it should work in ` std ` and ` no_std ` environments.
64
+
65
+ <br >
66
+
60
67
#### License
61
68
62
69
<sup >
You can’t perform that action at this time.
0 commit comments