summaryrefslogtreecommitdiff
path: root/solutions/15_traits/traits5.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-06-27 12:29:25 +0200
committermo8it <mo8it@proton.me>2024-06-27 12:29:25 +0200
commit45cfe86fb05a21dd52d9d72d07e881037803395d (patch)
tree3208a3e8ca8b308eb5e4d46a60646149c9fd9f77 /solutions/15_traits/traits5.rs
parentdb4d649e557f34641f2c7cc197dff2fb29637a7f (diff)
traits5 solution
Diffstat (limited to 'solutions/15_traits/traits5.rs')
-rw-r--r--solutions/15_traits/traits5.rs40
1 files changed, 39 insertions, 1 deletions
diff --git a/solutions/15_traits/traits5.rs b/solutions/15_traits/traits5.rs
index 4e18198..1fb426a 100644
--- a/solutions/15_traits/traits5.rs
+++ b/solutions/15_traits/traits5.rs
@@ -1 +1,39 @@
-// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
+trait SomeTrait {
+ fn some_function(&self) -> bool {
+ true
+ }
+}
+
+trait OtherTrait {
+ fn other_function(&self) -> bool {
+ true
+ }
+}
+
+struct SomeStruct;
+impl SomeTrait for SomeStruct {}
+impl OtherTrait for SomeStruct {}
+
+struct OtherStruct;
+impl SomeTrait for OtherStruct {}
+impl OtherTrait for OtherStruct {}
+
+fn some_func(item: impl SomeTrait + OtherTrait) -> bool {
+ // ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ item.some_function() && item.other_function()
+}
+
+fn main() {
+ // You can optionally experiment here.
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn test_some_func() {
+ assert!(some_func(SomeStruct));
+ assert!(some_func(OtherStruct));
+ }
+}