summaryrefslogtreecommitdiff
path: root/exercises/15_traits/traits3.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-07-05 13:39:50 +0200
committermo8it <mo8it@proton.me>2024-07-05 13:39:50 +0200
commit7123c7ae3a9605fbe962e4ef0a0f1424cd16fef8 (patch)
treec67f7e62bb9a179ae4fdbab492501cb6847e64c7 /exercises/15_traits/traits3.rs
parent77b687d501771c24bd83294d97b8e6f9ffa92d6b (diff)
parent4d9c346a173bb722b929f3ea3c00f84954483e24 (diff)
Merge remote-tracking branch 'upstream/main' into fix-enum-variant-inconsistency
Diffstat (limited to 'exercises/15_traits/traits3.rs')
-rw-r--r--exercises/15_traits/traits3.rs28
1 files changed, 13 insertions, 15 deletions
diff --git a/exercises/15_traits/traits3.rs b/exercises/15_traits/traits3.rs
index 4e2b06b..2e8969e 100644
--- a/exercises/15_traits/traits3.rs
+++ b/exercises/15_traits/traits3.rs
@@ -1,16 +1,10 @@
-// traits3.rs
-//
-// Your task is to implement the Licensed trait for both structures and have
-// them return the same information without writing the same function twice.
-//
-// Consider what you can add to the Licensed trait.
-//
-// Execute `rustlings hint traits3` or use the `hint` watch subcommand for a
-// hint.
+#![allow(dead_code)]
-// I AM NOT DONE
-
-pub trait Licensed {
+trait Licensed {
+ // TODO: Add a default implementation for `licensing_info` so that
+ // implementors like the two structs below can share that default behavior
+ // without repeating the function.
+ // The default license information should be the string "Default license".
fn licensing_info(&self) -> String;
}
@@ -22,8 +16,12 @@ struct OtherSoftware {
version_number: String,
}
-impl Licensed for SomeSoftware {} // Don't edit this line
-impl Licensed for OtherSoftware {} // Don't edit this line
+impl Licensed for SomeSoftware {} // Don't edit this line.
+impl Licensed for OtherSoftware {} // Don't edit this line.
+
+fn main() {
+ // You can optionally experiment here.
+}
#[cfg(test)]
mod tests {
@@ -31,7 +29,7 @@ mod tests {
#[test]
fn is_licensing_info_the_same() {
- let licensing_info = String::from("Some information");
+ let licensing_info = "Default license";
let some_software = SomeSoftware { version_number: 1 };
let other_software = OtherSoftware {
version_number: "v2.0.0".to_string(),