mirror of
https://github.com/ArthurDanjou/rustlings.git
synced 2026-02-04 13:47:49 +01:00
- Created empty solution files for various exercises in strings, modules, hashmaps, options, error handling, generics, traits, lifetimes, tests, iterators, smart pointers, threads, macros, clippy, conversions, and quizzes. - Each solution file contains a main function with a comment indicating that it will be automatically filled after completing the exercise. - Added a README.md file to provide information about the solutions and their purpose.
34 lines
688 B
Rust
34 lines
688 B
Rust
// The trait `AppendBar` has only one function which appends "Bar" to any object
|
|
// implementing this trait.
|
|
trait AppendBar {
|
|
fn append_bar(self) -> Self;
|
|
}
|
|
|
|
impl AppendBar for String {
|
|
// TODO: Implement `AppendBar` for the type `String`.
|
|
fn append_bar(self) -> Self {
|
|
format!("{}Bar", self)
|
|
}
|
|
}
|
|
|
|
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() {
|
|
assert_eq!(String::from("Foo").append_bar(), "FooBar");
|
|
}
|
|
|
|
#[test]
|
|
fn is_bar_bar() {
|
|
assert_eq!(String::from("").append_bar().append_bar(), "BarBar");
|
|
}
|
|
}
|