We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96d8961 commit 6ff3efdCopy full SHA for 6ff3efd
book/src/faq.md
@@ -75,7 +75,7 @@ the struct. Instead, use the `Default` trait. You can either enable this when
75
constructing the `Builder` using the `derive_default` method, or you can
76
implement this per struct using:
77
78
-```rust
+```rust,ignore
79
impl Default for SRC_DATA {
80
fn default() -> Self {
81
unsafe { std::mem::zeroed() }
@@ -85,7 +85,7 @@ impl Default for SRC_DATA {
85
86
This makes it possible to initialize `SRC_DATA` by:
87
88
89
SRC_DATA {
90
field_a: "foo",
91
field_b: "bar",
0 commit comments