summaryrefslogtreecommitdiff
path: root/solutions/15_traits/traits2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'solutions/15_traits/traits2.rs')
-rw-r--r--solutions/15_traits/traits2.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/solutions/15_traits/traits2.rs b/solutions/15_traits/traits2.rs
new file mode 100644
index 0000000..0db93e0
--- /dev/null
+++ b/solutions/15_traits/traits2.rs
@@ -0,0 +1,27 @@
+trait AppendBar {
+ fn append_bar(self) -> Self;
+}
+
+impl AppendBar for Vec<String> {
+ fn append_bar(mut self) -> Self {
+ // ^^^ this is important
+ self.push(String::from("Bar"));
+ self
+ }
+}
+
+fn main() {
+ // You can optionally experiment here.
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn is_vec_pop_eq_bar() {
+ let mut foo = vec![String::from("Foo")].append_bar();
+ assert_eq!(foo.pop().unwrap(), "Bar");
+ assert_eq!(foo.pop().unwrap(), "Foo");
+ }
+}