rustlings/exercises/traits/traits1.rs

45 lines
914 B
Rust
Raw Normal View History

2020-02-25 03:48:50 -06:00
// traits1.rs
// Time to implement some traits!
//
2020-02-25 03:48:50 -06:00
// Your task is to implement the trait
2022-11-24 13:41:25 -06:00
// `AppendBar` for the type `String`.
//
2020-02-25 03:48:50 -06:00
// The trait AppendBar has only one function,
// which appends "Bar" to any object
// implementing this trait.
2022-07-14 11:14:41 -05:00
// Execute `rustlings hint traits1` or use the `hint` watch subcommand for a hint.
2020-02-25 03:48:50 -06:00
trait AppendBar {
fn append_bar(self) -> Self;
}
impl AppendBar for String {
2023-02-24 11:51:24 -06:00
fn append_bar(self) -> String {
format!("{}Bar", self)
}
2020-02-25 03:48:50 -06:00
}
fn main() {
let s = String::from("Foo");
let s = s.append_bar();
println!("s: {}", s);
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn is_foo_bar() {
2020-02-25 03:48:50 -06:00
assert_eq!(String::from("Foo").append_bar(), String::from("FooBar"));
}
#[test]
fn is_bar_bar() {
2020-02-25 03:48:50 -06:00
assert_eq!(
String::from("").append_bar().append_bar(),
String::from("BarBar")
);
}
}