We have all used Box<T> before in our Rust code. It’s a glorious type, with great ergonomics -and flexibitility. We can use it to put our values on the heap, but it can do even more +and flexibility. We can use it to put our values on the heap, but it can do even more than that!

struct Fields {
     a: String,
     b: String,
diff --git a/posts/index.xml b/posts/index.xml
index 7892303..6ced117 100644
--- a/posts/index.xml
+++ b/posts/index.xml
@@ -1,6 +1,6 @@
-Posts on nilstriebs blog/posts/Recent content in Posts on nilstriebs blogHugo -- gohugo.ioen-usSat, 23 Jul 2022 00:00:00 +0000Box Is a Unique Type/posts/box-is-a-unique-type/Sat, 23 Jul 2022 00:00:00 +0000/posts/box-is-a-unique-type/We have all used Box&lt;T&gt; before in our Rust code. It&rsquo;s a glorious type, with great ergonomics and flexibitility. We can use it to put our values on the heap, but it can do even more than that!
+Posts on nilstriebs blog/posts/Recent content in Posts on nilstriebs blogHugo -- gohugo.ioen-usSat, 23 Jul 2022 00:00:00 +0000Box Is a Unique Type/posts/box-is-a-unique-type/Sat, 23 Jul 2022 00:00:00 +0000/posts/box-is-a-unique-type/We have all used Box&lt;T&gt; before in our Rust code. It&rsquo;s a glorious type, with great ergonomics and flexibility. We can use it to put our values on the heap, but it can do even more than that!
 struct Fields { a: String, b: String, } let fields = Box::new(Fields { a: &#34;a&#34;.to_string(), b: &#34;b&#34;.to_string() }); let a = fields.a; let b = fields.b; This kind of partial deref move is just one of the spectacular magic tricks box has up its sleeve, and they exist for good reason: They are very useful.<p>We have all used <code>Box&lt;T&gt;</code> before in our Rust code. It&rsquo;s a glorious type, with great ergonomics
-and flexibitility. We can use it to put our values on the heap, but it can do even more
+and flexibility. We can use it to put our values on the heap, but it can do even more
 than that!</p>
 <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-rust" data-lang="rust"><span style="display:flex;"><span><span style="color:#66d9ef">struct</span> <span style="color:#a6e22e">Fields</span> {
 </span></span><span style="display:flex;"><span> a: String,
diff --git a/tags/rust/index.xml b/tags/rust/index.xml
index 5373146..81b5309 100644
--- a/tags/rust/index.xml
+++ b/tags/rust/index.xml
@@ -1,6 +1,6 @@
-rust on nilstriebs blog/tags/rust/Recent content in rust on nilstriebs blogHugo -- gohugo.ioen-usSat, 23 Jul 2022 00:00:00 +0000Box Is a Unique Type/posts/box-is-a-unique-type/Sat, 23 Jul 2022 00:00:00 +0000/posts/box-is-a-unique-type/We have all used Box&lt;T&gt; before in our Rust code. It&rsquo;s a glorious type, with great ergonomics and flexibitility. We can use it to put our values on the heap, but it can do even more than that!
+rust on nilstriebs blog/tags/rust/Recent content in rust on nilstriebs blogHugo -- gohugo.ioen-usSat, 23 Jul 2022 00:00:00 +0000Box Is a Unique Type/posts/box-is-a-unique-type/Sat, 23 Jul 2022 00:00:00 +0000/posts/box-is-a-unique-type/We have all used Box&lt;T&gt; before in our Rust code. It&rsquo;s a glorious type, with great ergonomics and flexibility. We can use it to put our values on the heap, but it can do even more than that!
 struct Fields { a: String, b: String, } let fields = Box::new(Fields { a: &#34;a&#34;.to_string(), b: &#34;b&#34;.to_string() }); let a = fields.a; let b = fields.b; This kind of partial deref move is just one of the spectacular magic tricks box has up its sleeve, and they exist for good reason: They are very useful.<p>We have all used <code>Box&lt;T&gt;</code> before in our Rust code. It&rsquo;s a glorious type, with great ergonomics
-and flexibitility. We can use it to put our values on the heap, but it can do even more
+and flexibility. We can use it to put our values on the heap, but it can do even more
 than that!</p>
 <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-rust" data-lang="rust"><span style="display:flex;"><span><span style="color:#66d9ef">struct</span> <span style="color:#a6e22e">Fields</span> {
 </span></span><span style="display:flex;"><span> a: String,
diff --git a/tags/unsafe-code/index.xml b/tags/unsafe-code/index.xml
index ae8f6a4..9c1ac14 100644
--- a/tags/unsafe-code/index.xml
+++ b/tags/unsafe-code/index.xml
@@ -1,6 +1,6 @@
-unsafe code on nilstriebs blog/tags/unsafe-code/Recent content in unsafe code on nilstriebs blogHugo -- gohugo.ioen-usSat, 23 Jul 2022 00:00:00 +0000Box Is a Unique Type/posts/box-is-a-unique-type/Sat, 23 Jul 2022 00:00:00 +0000/posts/box-is-a-unique-type/We have all used Box&lt;T&gt; before in our Rust code. It&rsquo;s a glorious type, with great ergonomics and flexibitility. We can use it to put our values on the heap, but it can do even more than that!
+unsafe code on nilstriebs blog/tags/unsafe-code/Recent content in unsafe code on nilstriebs blogHugo -- gohugo.ioen-usSat, 23 Jul 2022 00:00:00 +0000Box Is a Unique Type/posts/box-is-a-unique-type/Sat, 23 Jul 2022 00:00:00 +0000/posts/box-is-a-unique-type/We have all used Box&lt;T&gt; before in our Rust code. It&rsquo;s a glorious type, with great ergonomics and flexibility. We can use it to put our values on the heap, but it can do even more than that!
 struct Fields { a: String, b: String, } let fields = Box::new(Fields { a: &#34;a&#34;.to_string(), b: &#34;b&#34;.to_string() }); let a = fields.a; let b = fields.b; This kind of partial deref move is just one of the spectacular magic tricks box has up its sleeve, and they exist for good reason: They are very useful.<p>We have all used <code>Box&lt;T&gt;</code> before in our Rust code. It&rsquo;s a glorious type, with great ergonomics
-and flexibitility. We can use it to put our values on the heap, but it can do even more
+and flexibility. We can use it to put our values on the heap, but it can do even more
 than that!</p>
 <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-rust" data-lang="rust"><span style="display:flex;"><span><span style="color:#66d9ef">struct</span> <span style="color:#a6e22e">Fields</span> {
 </span></span><span style="display:flex;"><span> a: String,