1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-20 00:08:06 +02:00
rustlings/exercises/15_traits/traits1.rs

31 lines
617 B
Rust
Raw Normal View History

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