2024-06-27 04:04:57 +03:00
|
|
|
// The trait `AppendBar` has only one function which appends "Bar" to any object
|
|
|
|
// implementing this trait.
|
2020-02-25 12:48:50 +03:00
|
|
|
trait AppendBar {
|
|
|
|
fn append_bar(self) -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AppendBar for String {
|
2024-06-27 04:04:57 +03:00
|
|
|
// TODO: Implement `AppendBar` for the type `String`.
|
2020-02-25 12:48:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let s = String::from("Foo");
|
|
|
|
let s = s.append_bar();
|
2024-06-27 04:04:57 +03:00
|
|
|
println!("s: {s}");
|
2020-02-25 12:48:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2021-10-18 14:57:12 +03:00
|
|
|
fn is_foo_bar() {
|
2024-06-27 04:04:57 +03:00
|
|
|
assert_eq!(String::from("Foo").append_bar(), "FooBar");
|
2020-02-25 12:48:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-10-18 14:57:12 +03:00
|
|
|
fn is_bar_bar() {
|
2024-06-27 04:04:57 +03:00
|
|
|
assert_eq!(String::from("").append_bar().append_bar(), "BarBar");
|
2020-02-25 12:48:50 +03:00
|
|
|
}
|
2020-07-11 05:01:38 +03:00
|
|
|
}
|