|
|
|
@ -679,6 +679,8 @@ OK(())
|
|
|
|
|
<section> |
|
|
|
|
<section> |
|
|
|
|
<h2>Macros</h2> |
|
|
|
|
|
|
|
|
|
<small class="fragment">?</small> |
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
@ -686,6 +688,50 @@ OK(())
|
|
|
|
|
<section> |
|
|
|
|
<h2>Traits/Generics</h2> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<pre><code class="hljs rust" data-trim> |
|
|
|
|
enum Result<T, E> { |
|
|
|
|
Ok(T), |
|
|
|
|
Err(E), |
|
|
|
|
} |
|
|
|
|
</code></pre> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<pre><code class="hljs rust" data-trim> |
|
|
|
|
trait Summary { |
|
|
|
|
fn summarize(&self) -> String; |
|
|
|
|
} |
|
|
|
|
</code></pre> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<pre><code class="hljs rust" data-trim> |
|
|
|
|
struct Super { |
|
|
|
|
phrase: String |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
impl Summary for Super { |
|
|
|
|
fn summarize(&self) -> String { |
|
|
|
|
self.phrase |
|
|
|
|
.split_whitespace() |
|
|
|
|
.map(|word| word.chars().nth(0).unwrap()) |
|
|
|
|
.collect(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</code></pre> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<pre><code class="hljs rust" data-trim> |
|
|
|
|
fn get_summary(summarizable: T) -> String |
|
|
|
|
where T: Summary |
|
|
|
|
{ |
|
|
|
|
... |
|
|
|
|
} |
|
|
|
|
</code></pre> |
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|