rustlings/exercises/traits/traits2.rs

30 lines
756 B
Rust
Raw Normal View History

2020-02-25 09:48:50 +00:00
// traits2.rs
//
// Your task is to implement the trait `AppendBar` for a vector of strings. To
// implement this trait, consider for a moment what it means to 'append "Bar"'
2020-02-25 09:48:50 +00:00
// to a vector of strings.
//
// No boiler plate code this time, you can do this!
//
2022-07-14 16:14:41 +00:00
// Execute `rustlings hint traits2` or use the `hint` watch subcommand for a hint.
2020-02-25 09:48:50 +00:00
// I AM NOT DONE
trait AppendBar {
fn append_bar(self) -> Self;
}
2022-11-24 19:39:54 +00:00
// TODO: Implement trait `AppendBar` for a vector of strings.
2020-02-25 09:48:50 +00:00
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn is_vec_pop_eq_bar() {
let mut foo = vec![String::from("Foo")].append_bar();
assert_eq!(foo.pop().unwrap(), String::from("Bar"));
assert_eq!(foo.pop().unwrap(), String::from("Foo"));
}
2020-02-25 11:00:09 +00:00
}